sqlplannertest

Trait PlannerTestRunner

Source
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.

Required Methods§

Source

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,

Run a test case and return the result

Implementors§