Esempio n. 1
0
        public void Stop()
        {
            var m       = new RecurringHelper(100);
            var success = m.Stop();

            Assert.IsTrue(success);
        }
 public void StartStop()
 {
     var m = new RecurringHelper(100);
     var success = m.Start();
     Assert.IsTrue(success);
     success = m.Stop();
     Assert.IsTrue(success);
 }