public void ProcessSimulation_Place()
        {
            //arrage
            var input          = "Place 1,2,North";
            var expectedReport = "Output: 1,2,North";

            //act
            _robotSimulator.ProcessSimulation(input);
            var report = _toyRobot.GetCurrentReport();

            //assert
            Assert.AreEqual(expectedReport, report);
        }