public void OnSimulationTimerElapsedTest()
 {
     Simulator_Accessor target = new Simulator_Accessor();
     object sender = null;
     ElapsedEventArgs e = null;
     target.m_lastUpdateTime = DateTime.Now;
     target.OnSimulationTimerElapsed(sender, e);
     //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);
 }
        public void OnSimulationTimerElapsedTest()
        {
            Simulator_Accessor target = new Simulator_Accessor();
            object             sender = null;
            ElapsedEventArgs   e      = null;

            target.m_lastUpdateTime = DateTime.Now;
            target.OnSimulationTimerElapsed(sender, e);
            //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);
        }