public void MoveRight()
        {
            // This section details with the intial setup of the test
            SLMMController controller = new SLMMController();
            MowerSession   postback   = controller.LawnDimensions(10, 10);
            MowerSession   session    = controller.MoveRight(postback);

            // This check is to make sure that the user moves to the correct position
            Assert.AreEqual(session.PositionX, 2);
            Assert.AreEqual(session.PositionY, 1);
        }