public void Rotate_Robot_Before_Placing_On_Table()
        {
            var robotInstructions = new RobotInstructions();

            var moveResult = robotInstructions.Left();
            Assert.AreEqual(moveResult, false);
            Assert.AreEqual("Robot can not rotate Left!! Robot is not placed on the table.", RobotStatus._error);

            var moveResult2 = robotInstructions.Right();
            Assert.AreEqual(moveResult2, false);
            Assert.AreEqual("Robot can not rotate Right!! Robot is not placed on the table.", RobotStatus._error);
        }
        public void Rotate_Robot_After_Placing_On_Table()
        {
            var robotInstructions = new RobotInstructions();

            var placeResult = robotInstructions.Place(0, 0, FacingDirection.North);
            Assert.AreEqual(placeResult, true);

            var moveResult = robotInstructions.Left();
            Assert.AreEqual(moveResult, true);

            var moveResult2 = robotInstructions.Right();
            Assert.AreEqual(moveResult2, true);
        }
        public void Report_After_Placing_On_Table_After_Moving_And_Rotating()
        {
            var robotInstructions = new RobotInstructions();

            var placeResult = robotInstructions.Place(0, 0, FacingDirection.North);
            Assert.AreEqual(placeResult, true);

            var moveResult = robotInstructions.Move();
            Assert.AreEqual(moveResult, true);

            var rightRotateResult = robotInstructions.Right();
            Assert.AreEqual(rightRotateResult, true);

            var reportResult = robotInstructions.Report();
            Assert.AreEqual("0,1,EAST", reportResult);
        }