public void StartSimulationTest()
        {
            Simulator_Accessor target = new Simulator_Accessor();

            target.StartSimulation();
            Assert.IsTrue(target.m_running);
            //Make sure the time updates within the minute
            //Chances of the minute rolling over in the middle of the test are slim
            Assert.AreEqual(DateTime.Now.Minute, target.m_lastUpdateTime.Minute);
            Assert.IsNotNull(target.m_trackControllerList);
        }
 public void StartSimulationTest()
 {
     Simulator_Accessor target = new Simulator_Accessor();
     target.StartSimulation();
     Assert.IsTrue(target.m_running);
     //Make sure the time updates within the minute
     //Chances of the minute rolling over in the middle of the test are slim
     Assert.AreEqual(DateTime.Now.Minute, target.m_lastUpdateTime.Minute);
     Assert.IsNotNull(target.m_trackControllerList);
 }