lot 0.1.3

Rust Load Testing Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # 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.

pub mod executor;
pub mod scenario;
mod timeline;