(self)
| 55 | class TestOSAPI(unittest.TestCase): |
| 56 | |
| 57 | def setUp(self): |
| 58 | self.mock = MockSession() |
| 59 | self.os = OS(self.mock) |
| 60 | |
| 61 | def test_getpid(self): |
| 62 | self.mock.set_eval_response(True, "12345\n") |
nothing calls this directly
no test coverage detected