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