コード例 #1
0
        public void Matches(WallType wall, byte actualWallType, bool expected)
        {
            var tile = new Tile {
                WallId = actualWallType
            };

            Assert.That(wall.Matches(tile), Is.EqualTo(expected));
        }