C# - SqueakyClean is missing test case for kebab -> camel conversion

I noticed that the tests in the C# track for this exercise did not completely cover the requirement to convert kebab case to camel case, so I added a test and submitted a PR: Adds Convert_kebab_to_camel_case_already_upper to Update SqueakyCleanTests by ronnieoverby · Pull Request #2265 · exercism/csharp · GitHub

The uncovered scenario was to test for kebab case where the letter after hyphen was already uppercase:
hello-World

I understand that this new test would cause prior solutions (like my first iteration!) to fail.