Skip to content

Commit

Permalink
fixup! C# tools: support generated filename corner cases
Browse files Browse the repository at this point in the history
  • Loading branch information
kkm committed Mar 22, 2019
1 parent 50aed8d commit aa40424
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/csharp/Grpc.Tools.Tests/CSharpGeneratorTest.cs
Expand Up @@ -35,6 +35,7 @@ public new void SetUp()
[TestCase("one_two.proto", "OneTwo.cs", "OneTwoGrpc.cs")]
[TestCase("ONE_TWO.proto", "ONETWO.cs", "ONETWOGrpc.cs")]
[TestCase("one.two.proto", "OneTwo.cs", "One.twoGrpc.cs")]
[TestCase("one123two.proto", "One123Two.cs", "One123twoGrpc.cs")]
[TestCase("__one_two!.proto", "OneTwo.cs", "OneTwo!Grpc.cs")]
[TestCase("one(two).proto", "OneTwo.cs", "One(two)Grpc.cs")]
[TestCase("one_(two).proto", "OneTwo.cs", "One(two)Grpc.cs")]
Expand Down

0 comments on commit aa40424

Please sign in to comment.