Ejemplo n.º 1
0
 public void DeleteRecordTest()
 {
     var target = new BaseArray();
     const int nIndex = 0;
     target.DeleteRecord(nIndex);
     Assert.AreEqual(0, target.Count(), "Utilities.BaseArray.Current was not set correctly.");
 }
Ejemplo n.º 2
0
 public void MoveNextTest()
 {
     var target = new BaseArray();
     const bool expected = false;
     bool actual = target.MoveNext();
     Assert.AreEqual(expected, actual, "Utilities.BaseArray.MoveNext did not return the expected value.");
 }
Ejemplo n.º 3
0
 public void GetEnumeratorTest()
 {
     var target = new BaseArray();
     Assert.AreEqual(0, target.Count(), "Utilities.BaseArray.Current was not set correctly.");
 }
Ejemplo n.º 4
0
 public void DeleteAllTest()
 {
     var target = new BaseArray();
     target.DeleteAll();
     Assert.AreEqual(0, target.Count(), "Utilities.BaseArray.Current was not set correctly.");
 }