System\Windows\Forms\TabControl.TabPageCollectionTests.cs (5)
2730collection.Insert(0, key, text);
2920Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.Insert(-1, "key", "text"));
2936Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.Insert(-1, "key", "text"));
2981Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.Insert(index, "key", "text"));
3004Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.Insert(index, "key", "text"));