(self, test_name: str)
| 87 | print(stderr.decode()) |
| 88 | |
| 89 | def java_client(self, test_name: str): |
| 90 | return Popen( |
| 91 | f"{self.mvn} test -Dtest={to_pascal_case(test_name)} -Dclient " |
| 92 | f"-Dport={self.port} -Dhost={self.host}", |
| 93 | stdout=PIPE, stderr=PIPE |
| 94 | ) |
| 95 | |
| 96 | def java_server(self, test_name: str): |
| 97 | return Popen( |
nothing calls this directly
no test coverage detected