(self)
| 660 | |
| 661 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 662 | def test_terminate(self): |
| 663 | exitcode = self._kill_process(multiprocessing.Process.terminate) |
| 664 | self.assertEqual(exitcode, -signal.SIGTERM) |
| 665 | |
| 666 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 667 | def test_kill(self): |
nothing calls this directly
no test coverage detected