(self, inputs, **kwargs)
| 25 | # Create a concrete subclass that implements generate_inner |
| 26 | class TestableAPI(BaseAPI): |
| 27 | def generate_inner(self, inputs, **kwargs): |
| 28 | return 0, "test response", None |
| 29 | |
| 30 | self._api = TestableAPI(**kwargs) |
| 31 |
no outgoing calls
no test coverage detected