Adds a bunch of keys as golden input.
(&mut self, keys: &[Key])
| 181 | |
| 182 | /// Adds a bunch of keys as golden input. |
| 183 | pub fn add_input_keys(&mut self, keys: &[Key]) { |
| 184 | self.golden_in.extend(keys.iter().cloned()); |
| 185 | } |
| 186 | |
| 187 | /// Obtains a reference to the captured output. |
| 188 | pub fn captured_out(&self) -> &[CapturedOut] { |
no test coverage detected