Current process should be detected as alive
(self)
| 32 | """Test process alive detection""" |
| 33 | |
| 34 | def test_current_process_alive(self) -> None: |
| 35 | """Current process should be detected as alive""" |
| 36 | self.assertTrue(is_process_alive(os.getpid())) |
| 37 | |
| 38 | def test_invalid_pid_dead(self) -> None: |
| 39 | """Invalid PIDs should be detected as dead""" |
nothing calls this directly
no test coverage detected