예제 #1
0
 public void AListClear16Test()
 {
     var a = new AList1<Person>();
     a.Init(mas);
     a.Clear();
     int size = a.Size();
     Assert.AreEqual(0, size);
 }
예제 #2
0
 public void AListClear16Test()
 {
     var a = new AList1<int>();
     int[] mas = new int[16];
     a.Init(mas);
     a.Clear();
     int size = a.Size();
     Assert.AreEqual(0, size);
 }