Sha256: 2fbb4441f170eee587e74fd799967497272471047512ff79f44cd2b6299a2fe7
Contents?: true
Size: 1.5 KB
Versions: 87
Compression:
Stored size: 1.5 KB
Contents
// This file was auto-generated based on version 1.2.0 of the canonical data. using Xunit; public class IsogramTest { [Fact] public void Empty_string() { Assert.True(Isogram.IsIsogram("")); } [Fact(Skip = "Remove to run test")] public void Isogram_with_only_lower_case_characters() { Assert.True(Isogram.IsIsogram("isogram")); } [Fact(Skip = "Remove to run test")] public void Word_with_one_duplicated_character() { Assert.False(Isogram.IsIsogram("eleven")); } [Fact(Skip = "Remove to run test")] public void Longest_reported_english_isogram() { Assert.True(Isogram.IsIsogram("subdermatoglyphic")); } [Fact(Skip = "Remove to run test")] public void Word_with_duplicated_character_in_mixed_case() { Assert.False(Isogram.IsIsogram("Alphabet")); } [Fact(Skip = "Remove to run test")] public void Hypothetical_isogrammic_word_with_hyphen() { Assert.True(Isogram.IsIsogram("thumbscrew-japingly")); } [Fact(Skip = "Remove to run test")] public void Isogram_with_duplicated_hyphen() { Assert.True(Isogram.IsIsogram("six-year-old")); } [Fact(Skip = "Remove to run test")] public void Made_up_name_that_is_an_isogram() { Assert.True(Isogram.IsIsogram("Emily Jung Schwartzkopf")); } [Fact(Skip = "Remove to run test")] public void Duplicated_character_in_the_middle() { Assert.False(Isogram.IsIsogram("accentor")); } }
Version data entries
87 entries across 87 versions & 1 rubygems