5 instantiations of NestedObject
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (5)
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" };
TestObjectModels\SimpleObjectWithNestedObject.cs (1)
24NestedObject = new NestedObject();
4 references to NestedObject
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (4)
IntegrationTests\NestedObjectIntegrationTest.cs (3)
46var newNested = new NestedObject() { StringProperty = "B" }; 69var patchDocument = new JsonPatchDocument<NestedObject>(); 88var testNested = new NestedObject() { StringProperty = "B" };
TestObjectModels\SimpleObjectWithNestedObject.cs (1)
12public NestedObject NestedObject { get; set; }