Esempio n. 1
0
        public void ContainsWallTest()
        {
            Wall testWall = new Wall(new Point(3, 2), new Point(2, 2));

            instance.AddWall(testWall);
            Wall otherTestWall = new Wall(new Point(3, 2), new Point(2, 2));

            Assert.IsTrue(instance.ContainsWall(otherTestWall));
        }