(self, stmt: str)
| 157 | assert self.shell_process.expect_exact(["lbug", pexpect.EOF]) == 0 |
| 158 | |
| 159 | def send_statement(self, stmt: str) -> None: |
| 160 | if self.shell_process: |
| 161 | assert self.shell_process.expect_exact(["lbug", pexpect.EOF]) == 0 |
| 162 | self.shell_process.send(stmt) |
| 163 | |
| 164 | def send_control_statement(self, stmt: str) -> None: |
| 165 | if self.shell_process: |
no outgoing calls
no test coverage detected