11 writes to AnotherStringProperty
Microsoft.AspNetCore.JsonPatch.Tests (11)
IntegrationTests\DynamicObjectIntegrationTest.cs (1)
113
dynamicTestObject.SimpleObject = new SimpleObject() {
AnotherStringProperty
= "B" };
IntegrationTests\NestedObjectIntegrationTest.cs (6)
167
AnotherStringProperty
= "B"
190
AnotherStringProperty
= "B"
213
AnotherStringProperty
= "B"
218
AnotherStringProperty
= "D"
307
AnotherStringProperty
= "B"
312
AnotherStringProperty
= "D"
IntegrationTests\SimpleObjectIntegrationTest.cs (2)
36
AnotherStringProperty
= "B"
56
AnotherStringProperty
= "B"
JsonPatchDocumentTest.cs (2)
55
AnotherStringProperty
= "B"
78
AnotherStringProperty
= "B"
12 references to AnotherStringProperty
Microsoft.AspNetCore.JsonPatch.Tests (12)
IntegrationTests\NestedObjectIntegrationTest.cs (7)
172
patchDocument.Copy(o => o.SimpleObject.StringProperty, o => o.SimpleObject.
AnotherStringProperty
);
178
Assert.Equal("A", targetObject.SimpleObject.
AnotherStringProperty
);
195
patchDocument.Copy(o => o.SimpleObject.StringProperty, o => o.SimpleObject.
AnotherStringProperty
);
201
Assert.Null(targetObject.SimpleObject.
AnotherStringProperty
);
230
Assert.Equal("D", targetObject.SimpleObject.
AnotherStringProperty
);
232
Assert.Equal("D", targetObject.InheritedObject.
AnotherStringProperty
);
328
Assert.Equal("D", targetObject.SimpleObject.
AnotherStringProperty
);
IntegrationTests\SimpleObjectIntegrationTest.cs (2)
46
Assert.Equal("A", targetObject.
AnotherStringProperty
);
66
Assert.Null(targetObject.
AnotherStringProperty
);
JsonPatchDocumentTest.cs (3)
68
Assert.Equal("A", targetObject.
AnotherStringProperty
);
82
patchDocTyped.Copy(o => o.StringProperty, o => o.
AnotherStringProperty
);
95
Assert.Equal("A", targetObject.
AnotherStringProperty
);