(self, cond)
| 711 | class TestDisable(MonitoringTestBase, unittest.TestCase): |
| 712 | |
| 713 | def gen(self, cond): |
| 714 | for i in range(10): |
| 715 | if cond: |
| 716 | yield 1 |
| 717 | else: |
| 718 | yield 2 |
| 719 | |
| 720 | def raise_handle_reraise(self): |
| 721 | try: |
no outgoing calls
no test coverage detected