Adds the `out` sequence of captured outputs to the expected outputs of the execution.
(mut self, out: V)
| 953 | |
| 954 | /// Adds the `out` sequence of captured outputs to the expected outputs of the execution. |
| 955 | pub fn expect_output<V: Into<Vec<CapturedOut>>>(mut self, out: V) -> Self { |
| 956 | self.exp_output.append(&mut out.into()); |
| 957 | self |
| 958 | } |
| 959 | |
| 960 | /// Adds the `out` sequence of strings to the expected outputs of the execution. |
| 961 | /// |
no test coverage detected