pub type ScriptCondition<'a> = (&'a dyn AsRef<Path>, &'a dyn Fn(Output) -> bool);
Expand description
Type alias for script and condition pair used in batch testing.
The first element is a reference to a path-like object representing the PHP script, and the second element is a function that validates the execution output.