1 write to IntegerIList
Microsoft.AspNetCore.JsonPatch.Tests (1)
IntegrationTests\ListIntegrationTest.cs (1)
61
IntegerIList
= new List<int>() { 1, 2, 3 }
2 references to IntegerIList
Microsoft.AspNetCore.JsonPatch.Tests (2)
IntegrationTests\ListIntegrationTest.cs (2)
66
patchDocument.Add(o => (List<int>)o.SimpleObject.
IntegerIList
, 4, 0);
72
Assert.Equal(new List<int>() { 4, 1, 2, 3 }, targetObject.SimpleObject.
IntegerIList
);