()
| 13 | |
| 14 | impl<'a> ShellRunner<'a> { |
| 15 | pub fn new() -> Self { |
| 16 | Self { |
| 17 | stdin: None, |
| 18 | kill_after: None, |
| 19 | example: None, |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | pub fn with_stdin(mut self, stdin: &'a str) -> Self { |
| 24 | self.stdin = Some(stdin); |
nothing calls this directly
no outgoing calls
no test coverage detected