4 writes to StringProperty
Microsoft.AspNetCore.JsonPatch.Tests (4)
IntegrationTests\NestedObjectIntegrationTest.cs (4)
45
var newNested = new NestedObject() {
StringProperty
= "B" };
65
NestedObject = new NestedObject() {
StringProperty
= "A" }
84
NestedObject = new NestedObject() {
StringProperty
= "B" }
87
var testNested = new NestedObject() {
StringProperty
= "B" };
4 references to StringProperty
Microsoft.AspNetCore.JsonPatch.Tests (4)
IntegrationTests\NestedObjectIntegrationTest.cs (4)
56
Assert.Equal("B", targetObject.NestedObject.
StringProperty
);
69
patchDocument.Test(o => o.
StringProperty
, "A");
75
Assert.Equal("A", targetObject.NestedObject.
StringProperty
);
95
Assert.Equal("B", targetObject.NestedObject.
StringProperty
);