fixup! C# tools: support generated filename corner cases

pull/18470/head
kkm 6 years ago
parent 50aed8d238
commit aa40424bb2
  1. 1
      src/csharp/Grpc.Tools.Tests/CSharpGeneratorTest.cs

@ -35,6 +35,7 @@ namespace Grpc.Tools.Tests
[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")]

Loading…
Cancel
Save