예제 #1
0
 public void TestRemove()
 {
     ArrayList4Asserter.AssertRemove(
         RetrieveOnlyInstance <string>(),
         new IndexOfItems <string, bool>("-1", false),
         new IndexOfItems <string, bool>(SIZE.ToString(), false),
         new IndexOfItems <string, bool>((SIZE - 1).ToString(), true),
         new IndexOfItems <string, bool>((SIZE - 1).ToString(), false),
         new IndexOfItems <string, bool>("20", true),
         new IndexOfItems <string, bool>("0", true),
         new IndexOfItems <string, bool>("1", true));
 }
예제 #2
0
 public void TestRemove()
 {
     ArrayList4Asserter.AssertRemove <int>(ArrayList4Asserter.CreateArrayListAndAssertValues(10));
 }