示例#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
文件: List.cs 项目: pfriesch/Towel
 [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());
 }