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."); }
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."); }
public void GetEnumeratorTest() { var target = new BaseArray(); Assert.AreEqual(0, target.Count(), "Utilities.BaseArray.Current was not set correctly."); }
public void DeleteAllTest() { var target = new BaseArray(); target.DeleteAll(); Assert.AreEqual(0, target.Count(), "Utilities.BaseArray.Current was not set correctly."); }