1 2 3 4 5 6 7 8
use crate::testing::TestCase; use std::path::PathBuf; #[derive(Debug)] pub struct TestCaseIndex<A> { pub mod_path: PathBuf, pub test_cases: Vec<TestCase<A>>, }