(self, stmt: str)
| 162 | self.shell_process.send(stmt) |
| 163 | |
| 164 | def send_control_statement(self, stmt: str) -> None: |
| 165 | if self.shell_process: |
| 166 | assert self.shell_process.expect_exact(["lbug", pexpect.EOF]) == 0 |
| 167 | self.shell_process.sendcontrol(stmt) |
| 168 | |
| 169 | |
| 170 | @pytest.fixture() |
no outgoing calls
no test coverage detected