(self, test_case: str)
| 478 | return True |
| 479 | |
| 480 | def test_case_client_exist(self, test_case: str) -> bool: |
| 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)) |
no test coverage detected