示例#1
0
        public void RotateRight_Should_Move_Forward_Method_When_Expected_Value()
        {
            //Arrange
            var eastStrategy = new NorthStrategy();

            //Act
            var result = eastStrategy.RotateRight();

            //Assert
            result.Should().Be(Direction.East);
        }