| 91 | // A representation of an already executed binary |
| 92 | #[derive(Debug)] |
| 93 | pub struct ExerciseOutput { |
| 94 | // The textual contents of the standard output of the binary |
| 95 | pub stdout: String, |
| 96 | // The textual contents of the standard error of the binary |
| 97 | pub stderr: String, |
| 98 | } |
| 99 | |
| 100 | struct FileHandle; |
| 101 |
nothing calls this directly
no outgoing calls
no test coverage detected