debugger/testing/
mod.rs

1//! E2E Test Runner
2//!
3//! Provides a robust test executor that reads YAML test scenarios
4//! and uses the DaemonClient to communicate with the debug daemon.
5//! This ensures assertions are made against structured data rather
6//! than fragile string matching.
7
8mod config;
9mod runner;
10
11pub use config::*;
12pub use runner::run_scenario;