本文整理汇总了Python中clock.Clock.shutDown方法的典型用法代码示例。如果您正苦于以下问题:Python Clock.shutDown方法的具体用法?Python Clock.shutDown怎么用?Python Clock.shutDown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类clock.Clock
的用法示例。
在下文中一共展示了Clock.shutDown方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ClockTest
# 需要导入模块: from clock import Clock [as 别名]
# 或者: from clock.Clock import shutDown [as 别名]
class ClockTest(unittest.TestCase):
def setUp(self):
self.clock = Clock()
def test_startUp(self):
assert (self.clock.isRunning == False)
self.clock.startUp()
assert (self.clock.isRunning == True)
self.clock.shutDown()
def test_shutdown(self):
self.clock.startUp()
assert (self.clock.isRunning == True)
self.clock.shutDown()
assert (self.clock.isRunning == False)
def test_addSuscribed(self):
aCpu = Mock()
self.clock.addSuscribed(aCpu)
assert (self.clock.suscribed == [aCpu])
def test_notify(self):
aCpu = Mock()
other = Mock()
another = Mock()
self.clock.suscribed = [aCpu,other,another]
self.clock.notify()
verify(aCpu,times(1)).run();
verify(other,times(1)).run();
verify(another,times(1)).run();