Beispiel #1
0
        public void TurnRight_should_increase_the_angle_by_ninety_degrees()
        {
            // Arrange

            // Act
            plotter.TurnRight();

            // Assert
            Assert.AreEqual(90, plotter.Orientation);
        }