(self)
| 313 | self.check_events(just_pass) |
| 314 | |
| 315 | def test_just_raise(self): |
| 316 | try: |
| 317 | self.check_events(just_raise) |
| 318 | except Exception: |
| 319 | pass |
| 320 | self.assertEqual(sys.monitoring.get_events(TEST_TOOL), 0) |
| 321 | |
| 322 | def test_just_call(self): |
| 323 | self.check_events(just_call) |
nothing calls this directly
no test coverage detected