(self)
| 419 | return self.test_dir.joinpath("python_impl_tests").joinpath(test_case) |
| 420 | |
| 421 | def generate_shim_code(self): |
| 422 | for case in self.test_cases: |
| 423 | if self.test_case_client_exist(case) or self.test_case_server_exist(case): |
| 424 | self.erpcgen( |
| 425 | "py", |
| 426 | self.test_dir.joinpath(f"python_impl_tests/{case}/service/"), |
| 427 | self.test_dir.joinpath(f"{case}/{case}.erpc"), |
| 428 | cwd=self.test_dir.joinpath(f"python_impl_tests/") |
| 429 | ) |
| 430 | |
| 431 | |
| 432 | class CTests(AbstractTests): |
nothing calls this directly
no test coverage detected