public void TestToString() { var testInstance = new SimpleArray(); Assert.IsTrue(testInstance.ToString().StartsWith("There are")); }
public void TestToString() { var testSimpleArrayInstance = new SimpleArray(); Assert.AreEqual("There are 4 and they are Bread, Milk, Eggs, Cheese.", testSimpleArrayInstance.ToString()); }