Beispiel #1
0
        public void Apply(WallType wall, byte expectedWallType)
        {
            var tile = new Tile();

            tile = wall.Apply(tile);

            Assert.That(tile.WallId, Is.EqualTo(expectedWallType));
        }