(self)
| 357 | self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') |
| 358 | |
| 359 | def test_main_exception_fixed_reps(self): |
| 360 | with captured_stderr() as error_stringio: |
| 361 | s = self.run_main(switches=['-n1', '1/0']) |
| 362 | self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') |
| 363 | |
| 364 | def autorange(self, seconds_per_increment=1/1024, callback=None): |
| 365 | timer = FakeTimer(seconds_per_increment=seconds_per_increment) |
nothing calls this directly
no test coverage detected