public void RemoveSingleWallCountTest()
        {
            BlueprintEditor blueEditor = GetInstance();

            blueEditor.InsertWall(new Point(0, 0), new Point(5, 0));
            blueEditor.RemoveWall(new Point(0, 0), new Point(5, 0));
            Assert.IsTrue(materials.IsWallsEmpty());
        }
Esempio n. 2
0
 public void EmptyContainerNoWallsTest()
 {
     Assert.IsTrue(instance.IsWallsEmpty());
 }
Esempio n. 3
0
 public void RemoveSingleWallCountTest()
 {
     instance.InsertWall(new Point(0, 0), new Point(5, 0));
     instance.RemoveWall(new Point(0, 0), new Point(5, 0));
     Assert.IsTrue(materials.IsWallsEmpty());
 }