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

            // Act
            plotter.Forward();

            // Assert
            Assert.AreEqual(2, plotter.Position.y);
        }