Fixed parsing of BoolValue.
This commit is contained in:
parent
2b22b611a8
commit
835fb947cc
2 changed files with 9 additions and 1 deletions
|
@ -417,5 +417,12 @@ namespace Google.Protobuf.WellKnownTypes
|
|||
TestWellKnownTypes.Descriptor.Fields[TestWellKnownTypes.StringFieldFieldNumber].Accessor.Clear(message);
|
||||
Assert.IsNull(message.StringField);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void GivenBoolValueWhenPerformingRoundTripEncodingViaJsonThenShouldNotExpectObjectAtTopLevel()
|
||||
{
|
||||
var value = new BoolValue { Value = true };
|
||||
Assert.AreEqual(value, JsonParser.Default.Parse<BoolValue>(JsonFormatter.Default.Format(value)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -86,7 +86,8 @@ namespace Google.Protobuf
|
|||
{ FloatValue.Descriptor.FullName, MergeWrapperField },
|
||||
{ DoubleValue.Descriptor.FullName, MergeWrapperField },
|
||||
{ BytesValue.Descriptor.FullName, MergeWrapperField },
|
||||
{ StringValue.Descriptor.FullName, MergeWrapperField }
|
||||
{ StringValue.Descriptor.FullName, MergeWrapperField },
|
||||
{ BoolValue.Descriptor.FullName, MergeWrapperField }
|
||||
};
|
||||
|
||||
// Convenience method to avoid having to repeat the same code multiple times in the above
|
||||
|
|
Loading…
Add table
Reference in a new issue