Skip to content

Commit

Permalink
Add missing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeApophis committed Apr 1, 2021
1 parent 9929824 commit 8962edc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Messerli.ChangeCase.Test/ToCamelCaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public class ToCamelCaseTest
[InlineData("PascalCase", "pascalCase")]
[InlineData("kebab-case", "kebabCase")]
[InlineData("HTTPConnection", "httpConnection")]
[InlineData("htmlDocument", "htmlDocument")]
[InlineData("rmiSomething", "rmiSomething")]
[InlineData("RmiSomething", "rmiSomething")]
[InlineData("RMISomething", "rmiSomething")]
Expand Down
1 change: 1 addition & 0 deletions Messerli.ChangeCase.Test/ToPascalCaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public class ToPascalCaseTest
[InlineData("PascalCase", "PascalCase")]
[InlineData("kebab-case", "KebabCase")]
[InlineData("HTTPConnection", "HttpConnection")]
[InlineData("htmlDocument", "HtmlDocument")]
[InlineData("rmiSomething", "RmiSomething")]
[InlineData("RmiSomething", "RmiSomething")]
[InlineData("RMISomething", "RmiSomething")]
Expand Down

0 comments on commit 8962edc

Please sign in to comment.