def test_reset(self): self.title = 'Reset' timer = Timer(self.title) timer.start().stop().show().reset().show()
def test_start_stop(self): self.title = 'Start and stop' timer = Timer(self.title) timer.start().show() timer.stop()