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

            MowerSession session = controller.MowerPosition(2, 5, postback);

            // This checks to see if the actual Position X given initally is the same
            // as the one that is actually assigned
            Assert.AreEqual(2, session.PositionX);

            // This checks to see if the actual Position Y given initally is the same
            // as the one that is actually assigned
            Assert.AreEqual(5, session.PositionY);
        }