コード例 #1
0
        public void GivenDirectionWest_WhenTurnLeft_ShouldDirectionSouth()
        {
            var direction    = new West();
            var newdirection = direction.Left().ToString();
            var expected     = new South().ToString();

            Assert.Equal(expected, newdirection);
        }