示例#1
0
 def test_shutdown_stops_running(self):
     timer = GameTimer()
     timer.shutdown()
     self.assertFalse(timer.keep_running())
示例#2
0
 def test_keep_running_method(self):
     timer = GameTimer()
     response = timer.keep_running()
     self.assertTrue(response)