本文整理汇总了Python中timer.Timer.get_counter方法的典型用法代码示例。如果您正苦于以下问题:Python Timer.get_counter方法的具体用法?Python Timer.get_counter怎么用?Python Timer.get_counter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类timer.Timer
的用法示例。
在下文中一共展示了Timer.get_counter方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_stop
# 需要导入模块: from timer import Timer [as 别名]
# 或者: from timer.Timer import get_counter [as 别名]
def test_stop(self):
timer = Timer()
time.sleep(5)
timer.stop()
time.sleep(3)
timer.start()
time.sleep(5)
self.assertEqual(timer.get_counter(),10)
示例2: test_init
# 需要导入模块: from timer import Timer [as 别名]
# 或者: from timer.Timer import get_counter [as 别名]
def test_init(self):
timer = Timer()
time.sleep(5)
self.assertEqual(timer.get_counter(),20)
示例3: test_interrupt_with_fischer
# 需要导入模块: from timer import Timer [as 别名]
# 或者: from timer.Timer import get_counter [as 别名]
def test_interrupt_with_fischer(self):
timer = Timer(20, 20)
timer.start()
time.sleep(5)
timer.interrupt()
self.assertEqual(timer.get_counter(), 15)
示例4: test_stop_with_fischer
# 需要导入模块: from timer import Timer [as 别名]
# 或者: from timer.Timer import get_counter [as 别名]
def test_stop_with_fischer(self):
timer = Timer(20, 20)
timer.start()
time.sleep(5)
timer.stop()
self.assertEqual(timer.get_counter(), 35)