rtest 0.2.2

integration test building framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) mod dependency;
pub(crate) mod rerun;
pub(crate) mod simple;

use crate::{
    context::ResourceId,
    runner::{result_map::ExecutionResultMap, test_repo::TestRepo},
};

pub(crate) trait ExecutionStrategy {
    fn run(&self, repo: &mut TestRepo, initial: &[ResourceId]) -> ExecutionResultMap;
}