pub trait RunTestsWithCoverage {
type Report;
type Error;
// Required method
fn run_tests_with_coverage<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Self::Report, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}