lot 0.3.1

Rust Load Testing Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Lot - A simple load testing framework
//!
//! `lot` provides the basic building blocks for creating and running load tests in Rust.
//! It is designed to be simple, flexible, and easy to use.
//!
//! The main components of `lot` are:
//!
//! - **Scenario:** A scenario represents a single user's journey through your system.
//! - **Executor:** The executor is responsible for running the scenarios and collecting the results.

mod executor;
mod timeline;

pub use executor::Executor;