1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module provides testing utilities and fixtures for the
//! `brontes-inspect` crate. It includes support for setting up test scenarios,
//! running inspectors with specific configurations, and validating the outcomes
//! against expected results.
//!
//! ## Modules
//!
//! - `benches`: Contains benchmark tests for performance analysis.
//! - `tests`: Includes the core functionality for setting up and executing
//!   inspector tests.
pub mod benches;
pub use benches::*;

pub mod tests;
pub use tests::*;