@@ -63,25 +63,26 @@ public void IsogramWithDuplicatedHyphen()
6363 }
6464
6565 [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
66- public void [ "madeUpNameThatIsAnIsogram()
67- {
68- Assert . True ( Isogram . IsIsogram ( "Emily Jung Schwartzkopf" ) ) ; }
69-
70- [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
71- public void DuplicatedCharacterInTheMiddle ( )
72- {
73- Assert . False ( Isogram . IsIsogram ( "accentor" ) ) ;
74- }
66+ public void MadeUpNameThatIsAnIsogram ( )
67+ {
68+ Assert . True ( Isogram . IsIsogram ( "Emily Jung Schwartzkopf" ) ) ;
69+ }
7570
76- [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
77- public void SameFirstAndLastCharacters ( )
78- {
79- Assert . False ( Isogram . IsIsogram ( "angola " ) ) ;
80- }
71+ [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
72+ public void DuplicatedCharacterInTheMiddle ( )
73+ {
74+ Assert . False ( Isogram . IsIsogram ( "accentor " ) ) ;
75+ }
8176
82- [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
83- public void WordWithDuplicatedCharacterAndWithTwoHyphens ( )
84- {
85- Assert . False ( Isogram . IsIsogram ( "up-to-date " ) ) ;
86- } }
77+ [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
78+ public void SameFirstAndLastCharacters ( )
79+ {
80+ Assert . False ( Isogram . IsIsogram ( "angola " ) ) ;
81+ }
8782
83+ [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
84+ public void WordWithDuplicatedCharacterAndWithTwoHyphens ( )
85+ {
86+ Assert . False ( Isogram . IsIsogram ( "up-to-date" ) ) ;
87+ }
88+ }
0 commit comments