tesser_test_utils/lib.rs
1//! Utilities for standing up mock exchanges that exercise Tesser end-to-end flows.
2
3pub mod exchange;
4pub mod rest;
5pub mod scenario;
6pub mod state;
7pub mod websocket;
8
9pub use exchange::MockExchange;
10pub use scenario::{OrderFillStep, Scenario, ScenarioAction, ScenarioManager, ScenarioTrigger};
11pub use state::{AccountConfig, AutoFillConfig, MockExchangeConfig, MockExchangeState};