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

            // This tests for two things first it makes sure that the method comes back with the correct
            // information but it is also check to see if the clamp method in the controller is making
            // sure that the mower does not go out of bounds
            Assert.AreEqual(session.PositionX, 1);
            Assert.AreEqual(session.PositionY, 1);
        }