Пример #1
0
 public void RemoveAll_Testing()
 {
     IList_Testing.RemoveAll_Testing <int, ListLinked <int> >(100, 0, 1, 2, 3, 4, 5, 6, 7);
     IList_Testing.RemoveAll_Testing <string, ListLinked <string> >(100, "0", "1", "2", "3", "4", "5", "6", "7");
 }
Пример #2
0
 public void Add_Testing()
 {
     IList_Testing.Add_Testing <int, ListLinked <int> >(100, i => i);
     IList_Testing.Add_Testing <string, ListLinked <string> >(100, i => i.ToString());
 }
Пример #3
0
 public void RemoveFirst_Testing()
 {
     IList_Testing.RemoveFirst_Testing <int, ListLinked <int> >(100, i => i);
     IList_Testing.RemoveFirst_Testing <string, ListLinked <string> >(100, i => i.ToString());
 }
Пример #4
0
 [TestMethod] public void RemoveFirst_Testing()
 {
     IList_Testing.RemoveFirst_Testing <int, ListArray <int> >(100, i => i);
     IList_Testing.RemoveFirst_Testing <string, ListArray <string> >(100, i => i.ToString());
 }