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 reporter;
11pub mod request_gen;
12pub mod scenarios;
13pub mod spec_parser;
14
15pub use command::BenchCommand;
16pub use error::{BenchError, Result};
17pub use scenarios::LoadScenario;