pub trait TestFileRunner {
// Required method
fn run(
&mut self,
inputs: &OrderedHashMap<String, String>
) -> OrderedHashMap<String, String>;
}
Expand description
Trait for running a parsed test file.
Required Methods§
sourcefn run(
&mut self,
inputs: &OrderedHashMap<String, String>
) -> OrderedHashMap<String, String>
fn run( &mut self, inputs: &OrderedHashMap<String, String> ) -> OrderedHashMap<String, String>
Reads tags from the input map, and returns the output map, that should match the expected outputs.