Method
run_files
(&mut self, tests: impl IntoIterator<Item = TestFile<'a>>)
Source from the content-addressed store, hash-verified
| 145 | } |
| 146 | |
| 147 | pub fn run_files<'a>(&mut self, tests: impl IntoIterator<Item = TestFile<'a>>) -> Result<()> { |
| 148 | for file in tests { |
| 149 | self.run_file(file)?; |
| 150 | } |
| 151 | Ok(()) |
| 152 | } |
| 153 | |
| 154 | fn imports(store: &mut Store, modules: &HashMap<String, ModuleInstance>) -> Result<Imports> { |
| 155 | let mut imports = Imports::new(); |
Callers
nothing calls this directly
Tested by
no test coverage detected