2 overrides of RemoveAllTestHelper
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
431private protected override void RemoveAllTestHelper<T>(ImmutableSegmentedList<T> list, Predicate<T> test)
Collections\ImmutableSegmentedListTest.cs (1)
840private protected override void RemoveAllTestHelper<T>(ImmutableSegmentedList<T> list, Predicate<T> test)
5 references to RemoveAllTestHelper
Microsoft.CodeAnalysis.UnitTests (5)
Collections\ImmutableListTestBase.cs (5)
372this.RemoveAllTestHelper(list, n => false); 373this.RemoveAllTestHelper(list, n => true); 374this.RemoveAllTestHelper(list, n => n < 7); 375this.RemoveAllTestHelper(list, n => n > 7); 376this.RemoveAllTestHelper(list, n => n == 7);