(self, command)
| 453 | test_env.num_clients += 1 |
| 454 | |
| 455 | def command(self, command): |
| 456 | if self.fifo is None: |
| 457 | self.fifo = open_fifo(self.fifo_path) |
| 458 | self.fifo.write(f"{command}\n") |
| 459 | |
| 460 | def exit(self): |
| 461 | self.command("quit") |
no test coverage detected