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