(self, test_case: str)
| 481 | return self.executable_exists(self.get_test_executable(test_case, "client", self.transport)) |
| 482 | |
| 483 | def test_case_server_exist(self, test_case: str) -> bool: |
| 484 | return self.executable_exists(self.get_test_executable(test_case, "server", self.transport)) |
| 485 | |
| 486 | def client(self) -> None: |
| 487 | result_file = self.get_result_file() |
no test coverage detected