Пример #1
0
 def testPeriodicalExecution(self):
     sched = Scheduler(self.mockFunc, period=0.1)
     sched.start()
     time.sleep(0.15)
     self.assertEqual(1, self.executed)
     time.sleep(0.2)
     self.assertEqual(3, self.executed)
     sched.stop()
Пример #2
0
 def testStop(self):
     sched = Scheduler(self.mockFunc, period=0.1)
     sched.start()
     sched.stop()
     time.sleep(0.15)
     self.assertEqual(0, self.executed)