Compile and run the resulting test harness of the given Exercise
(exercise: &Exercise, verbose: bool)
| 34 | |
| 35 | // Compile and run the resulting test harness of the given Exercise |
| 36 | pub fn test(exercise: &Exercise, verbose: bool) -> Result<(), ()> { |
| 37 | compile_and_test(exercise, RunMode::NonInteractive, verbose)?; |
| 38 | Ok(()) |
| 39 | } |
| 40 | |
| 41 | // Invoke the rust compiler without running the resulting binary |
| 42 | fn compile_only(exercise: &Exercise) -> Result<bool, ()> { |
no test coverage detected