4 writes to StringProperty
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (4)
IntegrationTests\NestedObjectIntegrationTest.cs (4)
46var newNested = new NestedObject() { StringProperty = "B" }; 66NestedObject = new NestedObject() { StringProperty = "A" } 85NestedObject = new NestedObject() { StringProperty = "B" } 88var testNested = new NestedObject() { StringProperty = "B" };
4 references to StringProperty
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (4)
IntegrationTests\NestedObjectIntegrationTest.cs (4)
57Assert.Equal("B", targetObject.NestedObject.StringProperty); 70patchDocument.Test(o => o.StringProperty, "A"); 76Assert.Equal("A", targetObject.NestedObject.StringProperty); 96Assert.Equal("B", targetObject.NestedObject.StringProperty);