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

            // Act
            plotter.TurnLeft();

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