(line: usize, msg: impl Into<String>)
| 322 | |
| 323 | impl TestResult { |
| 324 | fn error(line: usize, msg: impl Into<String>) -> Self { |
| 325 | Self { line, result: Err(msg.into()) } |
| 326 | } |
| 327 | |
| 328 | fn success(line: usize, input_path: PathBuf) -> TestResult { |
| 329 | Self { line, result: Ok(input_path) } |
nothing calls this directly
no outgoing calls
no test coverage detected