(self)
| 307 | self.check_events(just_pass) |
| 308 | |
| 309 | def test_just_raise(self): |
| 310 | try: |
| 311 | self.check_events(just_raise) |
| 312 | except Exception: |
| 313 | pass |
| 314 | self.assertEqual(sys.monitoring.get_events(TEST_TOOL), 0) |
| 315 | |
| 316 | def test_just_call(self): |
| 317 | self.check_events(just_call) |
nothing calls this directly
no test coverage detected