pub trait PlannerTestRunner: Send {
// Required method
fn run<'life0, 'life1, 'async_trait>(
&'life0 mut self,
test_case: &'life1 ParsedTestCase,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
A planner test runner.