(path: &Path)
| 109 | } |
| 110 | |
| 111 | fn run_test(path: &Path) -> Result<()> { |
| 112 | let mut test = Test::new(path)?; |
| 113 | let output = test.compile()?; |
| 114 | |
| 115 | assert_output(&test, output)?; |
| 116 | |
| 117 | Ok(()) |
| 118 | } |
| 119 | #[derive(Debug, Deserialize)] |
| 120 | #[serde(deny_unknown_fields)] |
| 121 | struct TestConfig { |
no test coverage detected