8 references to IList_Generic_Item_InvalidIndex_ThrowType
Microsoft.CodeAnalysis.UnitTests (8)
Collections\List\IList.Generic.Tests.cs (8)
115Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[-1]); 116Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[int.MinValue]); 124Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[count]); 125Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[count + 1]); 149Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[-1] = validAdd); 150Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[int.MinValue] = validAdd); 163Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[count] = validAdd); 164Assert.Throws(IList_Generic_Item_InvalidIndex_ThrowType, () => list[count + 1] = validAdd);