4 references to ReadOnlyList
Microsoft.CodeAnalysis.UnitTests (4)
Collections\Extensions\EnumerableExtensionsTests.cs (4)
81
Assert.Equal(-1, new
ReadOnlyList
<int>(5).IndexOf(6));
82
Assert.Equal(0, new
ReadOnlyList
<int>(5).IndexOf(5));
93
Assert.Equal(-1, new
ReadOnlyList
<int>(5).IndexOf(-6, comparer));
94
Assert.Equal(0, new
ReadOnlyList
<int>(5).IndexOf(-5, comparer));