Example #1
0
        public void TestToString()
        {
            var testInstance = new SimpleArray();

            Assert.IsTrue(testInstance.ToString().StartsWith("There are"));
        }
Example #2
0
        public void TestToString()
        {
            var testSimpleArrayInstance = new SimpleArray();

            Assert.AreEqual("There are 4 and they are Bread, Milk, Eggs, Cheese.", testSimpleArrayInstance.ToString());
        }