Registers a new expected side-effect `co` on the console.
(mut self, co: CapturedOut)
| 681 | |
| 682 | /// Registers a new expected side-effect `co` on the console. |
| 683 | fn add(mut self, co: CapturedOut) -> Self { |
| 684 | self.output.push(co); |
| 685 | self |
| 686 | } |
| 687 | |
| 688 | /// Registers that the file has been modified. |
| 689 | fn set_dirty(mut self) -> Self { |