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

A planner test runner.

Required Methods

Run a test case and return the result

Implementors