public void Excercise3Method1_MapSize_1() { Exercise3 e3 = new Exercise3(); MyMap mymap = (MyMap)e3.Method1(); Assert.Equal(1, mymap.GetMapSize(1)); }
public void Excercise3Method1_AddCell_1() { Exercise3 e3 = new Exercise3(); MyMap mymap = (MyMap)e3.Method1(); Assert.Equal(1, mymap.AddNewCells(1)); }
public void Exercise3Method1Test3() { Exercise3 e3 = new Exercise3(); MyMap map = (MyMap)e3.Method1(); Assert.AreEqual(map.AddNewCells(2011), 2011); }
public void Excercise3Method1_MapName_false() { Exercise3 e3 = new Exercise3(); MyMap mymap = (MyMap)e3.Method1(); Assert.NotEqual("BID-Mapt", mymap.GetMapName()); }
public void Exercise3Method1Test2() { Exercise3 e3 = new Exercise3(); MyMap map = (MyMap)e3.Method1(); Assert.AreEqual(map.GetMapSize(5.2f), 5.2f * 5.2f); }
public void Exercise3Method1Test1() { Exercise3 e3 = new Exercise3(); MyMap map = (MyMap)e3.Method1(); Assert.AreEqual(map.GetMapName(), "BID-Map"); }
public void Ex3Test3() { Exercise3 ex3 = new Exercise3(); MyMap myMap = (MyMap)ex3.Method1(); Assert.AreEqual(myMap.AddNewCells(2), 2); }
public void Ex3Test2() { Exercise3 ex3 = new Exercise3(); MyMap myMap = (MyMap)ex3.Method1(); Assert.AreEqual(myMap.GetMapSize(1), 1); }
public void Method1TestIfReturnIsNotNull() { Assert.IsNotNull(ex3.Method1()); }