Skip to content

Commit

Permalink
Adds Convert_kebab_to_camel_case_already_upper to Update SqueakyClean…
Browse files Browse the repository at this point in the history
…Tests (#2265)
  • Loading branch information
ronnieoverby authored May 9, 2024
1 parent 0a12abe commit d71de05
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions exercises/concept/squeaky-clean/SqueakyCleanTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ public void Convert_kebab_to_camel_case()
Assert.Equal("àḂç", Identifier.Clean("à-ḃç"));
}

[Fact]
[Task(3)]
public void Convert_kebab_to_camel_case_already_upper()
{
Assert.Equal("àḂç", Identifier.Clean("à-Ḃç"));
}

[Fact]
[Task(4)]
public void Clean_string_with_special_characters()
Expand Down

0 comments on commit d71de05

Please sign in to comment.