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