gesha-core 0.0.12

Core functionality for Gesha project
Documentation
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>>,
}