| Index: third_party/protobuf/csharp/src/Google.Protobuf.Test/JsonParserTest.cs
|
| diff --git a/third_party/protobuf/csharp/src/Google.Protobuf.Test/JsonParserTest.cs b/third_party/protobuf/csharp/src/Google.Protobuf.Test/JsonParserTest.cs
|
| index c3ad851b8aac1ed3a551ed62566f78f65f0ced0a..f595455aa161f1e954bcd4d08b0f5ad8871f1813 100644
|
| --- a/third_party/protobuf/csharp/src/Google.Protobuf.Test/JsonParserTest.cs
|
| +++ b/third_party/protobuf/csharp/src/Google.Protobuf.Test/JsonParserTest.cs
|
| @@ -133,9 +133,12 @@ namespace Google.Protobuf
|
| }
|
|
|
| [Test]
|
| + [TestCase(typeof(BoolValue), "true", true)]
|
| [TestCase(typeof(Int32Value), "32", 32)]
|
| [TestCase(typeof(Int64Value), "32", 32L)]
|
| + [TestCase(typeof(Int64Value), "\"32\"", 32L)]
|
| [TestCase(typeof(UInt32Value), "32", 32U)]
|
| + [TestCase(typeof(UInt64Value), "\"32\"", 32UL)]
|
| [TestCase(typeof(UInt64Value), "32", 32UL)]
|
| [TestCase(typeof(StringValue), "\"foo\"", "foo")]
|
| [TestCase(typeof(FloatValue), "1.5", 1.5f)]
|
|
|