mockforge_bench/lib.rs
1//! Load and performance testing module for MockForge
2//!
3//! This module provides functionality to run load tests against real API endpoints
4//! using OpenAPI specifications to generate realistic traffic patterns.
5
6pub mod command;
7pub mod error;
8pub mod executor;
9pub mod k6_gen;
10pub mod parallel_executor;
11pub mod reporter;
12pub mod request_gen;
13pub mod scenarios;
14pub mod spec_parser;
15pub mod target_parser;
16
17pub use command::BenchCommand;
18pub use error::{BenchError, Result};
19pub use parallel_executor::{AggregatedResults, TargetResult};
20pub use scenarios::LoadScenario;
21pub use target_parser::{parse_targets_file, TargetConfig};