Disconnect the API from VPP
(self)
| 379 | self.vpp.register_event_callback(self) |
| 380 | |
| 381 | def disconnect(self): |
| 382 | """Disconnect the API from VPP""" |
| 383 | self.vpp.disconnect() |
| 384 | |
| 385 | def api(self, api_fn, api_args, expected_retval: int | list[int] = 0): |
| 386 | """Call API function and check it's return value. |
no outgoing calls
no test coverage detected