コード例 #1
0
        public void GivenDirectionEast_WhenTurnRight_ShouldDirectionSouth()
        {
            var direction    = new East();
            var newdirection = direction.Right().ToString();
            var expected     = new South().ToString();

            Assert.Equal(expected, newdirection);
        }