本文整理汇总了Python中mu.modes.microbit.MicrobitMode.flash_timer方法的典型用法代码示例。如果您正苦于以下问题:Python MicrobitMode.flash_timer方法的具体用法?Python MicrobitMode.flash_timer怎么用?Python MicrobitMode.flash_timer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mu.modes.microbit.MicrobitMode
的用法示例。
在下文中一共展示了MicrobitMode.flash_timer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_flash_finished
# 需要导入模块: from mu.modes.microbit import MicrobitMode [as 别名]
# 或者: from mu.modes.microbit.MicrobitMode import flash_timer [as 别名]
def test_flash_finished():
"""
Ensure state is set back as expected when the flashing thread is finished.
"""
view = mock.MagicMock()
editor = mock.MagicMock()
mm = MicrobitMode(editor, view)
mm.flash_thread = mock.MagicMock()
mm.flash_timer = mock.MagicMock()
mm.flash_finished()
view.button_bar.slots['flash'].setEnabled.assert_called_once_with(True)
editor.show_status_message.assert_called_once_with("Finished flashing.")
assert mm.flash_thread is None
assert mm.flash_timer is None
示例2: test_flash_failed
# 需要导入模块: from mu.modes.microbit import MicrobitMode [as 别名]
# 或者: from mu.modes.microbit.MicrobitMode import flash_timer [as 别名]
def test_flash_failed():
"""
Ensure things are cleaned up if flashing failed.
"""
view = mock.MagicMock()
editor = mock.MagicMock()
mm = MicrobitMode(editor, view)
mock_timer = mock.MagicMock()
mm.flash_timer = mock_timer
mm.flash_thread = mock.MagicMock()
mm.flash_failed('Boom')
assert view.show_message.call_count == 1
view.button_bar.slots['flash'].setEnabled.assert_called_once_with(True)
assert mm.flash_thread is None
assert mm.flash_timer is None
mock_timer.stop.assert_called_once_with()