(self)
| 1814 | pass |
| 1815 | |
| 1816 | def test_close(self): |
| 1817 | for i, fix, actions in self._iter_close_tests(): |
| 1818 | with self.subTest('{} {} {}'.format(i, fix, actions)): |
| 1819 | fix.prep_interpreter(fix.interp) |
| 1820 | self.run_actions(fix, actions) |
| 1821 | |
| 1822 | self._close(fix, force=False) |
| 1823 | |
| 1824 | self._assert_closed(fix) |
| 1825 | # XXX Things slow down if we have too many interpreters. |
| 1826 | fix.clean_up() |
| 1827 | |
| 1828 | def test_force_close(self): |
| 1829 | for i, fix, actions in self._iter_close_tests(): |
nothing calls this directly
no test coverage detected