Example #1
0
        public void GivenDirectionNorth_WhenTurnRight_ShouldDirectionEast()
        {
            var direction    = new North();
            var newdirection = direction.Right().ToString();
            var expected     = new East().ToString();

            Assert.Equal(expected, newdirection);
        }