(self)
| 352 | "Unrecognized unit. Please select nsec, usec, msec, or sec.\n") |
| 353 | |
| 354 | def test_main_exception(self): |
| 355 | with captured_stderr() as error_stringio: |
| 356 | s = self.run_main(switches=['1/0']) |
| 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: |
nothing calls this directly
no test coverage detected