public void ToString_CheckCoversion_ListOfStrings() { // arrange ListB<string> listB = new ListB<string>(); string expected = "Packers Suck"; string actual; //act listB.Add("P"); listB.Add("a"); listB.Add("c"); listB.Add("k"); listB.Add("e"); listB.Add("r"); listB.Add("s"); listB.Add(" "); listB.Add("S"); listB.Add("u"); listB.Add("c"); listB.Add("k"); actual = listB.ToString(); //assert Assert.AreEqual(expected, actual); }
public void ToString_CheckCoversion_ListOfDoubles() { // arrange ListB<double> listB = new ListB<double>(); string expected = "56.323.21"; string actual; //act listB.Add(56.32); listB.Add(3.21); actual = listB.ToString(); //assert Assert.AreEqual(expected, actual); }
[TestMethod]//14 public void ToString_CheckCoversion_ListOfStrings() { // arrange ListB <string> listB = new ListB <string>(); string expected = "BenJ"; string actual; //act listB.Add("B"); listB.Add("e"); listB.Add("n"); listB.Add("J"); actual = listB.ToString(); //assert Assert.AreEqual(expected, actual); }
[TestMethod]//13 public void ToString_CheckCoversion_ListOfIntegers() { // arrange ListB <int> listB = new ListB <int>(); string expected = "3456"; string actual; //act listB.Add(3); listB.Add(4); listB.Add(5); listB.Add(6); actual = listB.ToString(); //assert Assert.AreEqual(expected, actual); }