(&mut self, name: &str, file: &str)
| 141 | } |
| 142 | |
| 143 | fn test_group(&mut self, name: &str, file: &str) -> &mut TestGroup { |
| 144 | self.0.entry(name.to_string()).or_insert_with(|| TestGroup::new(file)) |
| 145 | } |
| 146 | |
| 147 | pub fn run_files<'a>(&mut self, tests: impl IntoIterator<Item = TestFile<'a>>) -> Result<()> { |
| 148 | for file in tests { |