(self, stmt: str)
| 151 | self.shell_process = pexpect.spawn(command, encoding="utf_8", env=my_env) |
| 152 | |
| 153 | def send_finished_statement(self, stmt: str) -> None: |
| 154 | if self.shell_process: |
| 155 | assert self.shell_process.expect_exact(["lbug", pexpect.EOF]) == 0 |
| 156 | self.shell_process.send(stmt) |
| 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: |
no outgoing calls
no test coverage detected