Exemplo n.º 1
0
        public void GetTurtleDirection_North_ReturnNorth()
        {
            // Arrange
            var north = new North();

            // Act
            var result = Settings.GetTurtleDirection("N");

            // Assert
            Assert.Equal(result.GetType(), north.GetType());
        }