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