4 references to Insert
Microsoft.Analyzers.Local.Tests (4)
Json\JsonArrayTest.cs (4)
58Assert.Same(obj, obj.Insert(obj.Count, 2)); 64Assert.Same(obj, obj.Insert(0, 0)); 70Assert.ThrowsAny<ArgumentOutOfRangeException>(() => obj.Insert(-1, 0)); 71Assert.ThrowsAny<ArgumentException>(() => obj.Insert(obj.Count + 1, 0));