dag-executor 0.1.0

A production-ready DAG executor with state management and advanced patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Entry point for the integration-test suite.
//!
//! Pulls in the scenario modules under `tests/integration/` (see `tests/unit.rs`
//! for why this indirection is needed).

#[path = "common/fixtures.rs"]
mod fixtures;

#[path = "integration/fault_tolerance_tests.rs"]
mod fault_tolerance_tests;
#[path = "integration/performance_tests.rs"]
mod performance_tests;
#[path = "integration/state_recovery_tests.rs"]
mod state_recovery_tests;
#[path = "integration/workflow_tests.rs"]
mod workflow_tests;