예제 #1
0
        public void WillRemoveTimer()
        {
            TimerCommands.CreateTimer("shmoo3");
            TimerCommands.RemoveTimer("shmoo3");

            Assert.IsFalse(TimerCommands.TimerExists("shmoo3"));
        }
예제 #2
0
        public void WillCreateTimer()
        {
            TimerCommands.CreateTimer("shmoo2");

            Assert.IsTrue(TimerCommands.TimerExists("shmoo2"));

            TimerCommands.RemoveTimer("shmoo2");
        }
예제 #3
0
 public void WillCreateTimerSetTimer()
 {
     TimerCommands.SetTimer("shmoo4");
     Assert.IsTrue(TimerCommands.TimerExists("shmoo4"));
 }