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

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