1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! Testing utilities for choreographic protocols
//!
//! This module provides building blocks for protocol testing, simulation,
//! and integration with external simulators like aura-simulator.
//!
//! # Overview
//!
//! The testing module provides:
//!
//! - **Deterministic execution**: `Clock` and `Rng` traits for reproducible runs
//! - **State machines**: `ProtocolStateMachine` for step-by-step execution
//! - **Transport abstraction**: `SimulatedTransport` for custom message delivery
//! - **Event observation**: `ProtocolObserver` for monitoring protocol execution
//! - **Message envelopes**: `ProtocolEnvelope` for structured message passing
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Simulator / Test Harness │
//! └─────────────────────────────────────────────────────────────┘
//! │
//! ┌──────────────────┼──────────────────┐
//! │ │ │
//! ▼ ▼ ▼
//! ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
//! │ Clock │ │ Rng │ │ Observer │
//! │ Trait │ │ Trait │ │ Trait │
//! └─────────────┘ └─────────────┘ └─────────────┘
//! │
//! ▼
//! ┌─────────────────────────────────────────────────────────┐
//! │ ProtocolStateMachine │
//! │ blocked_on() -> BlockedOn │
//! │ step(input) -> StepOutput │
//! │ checkpoint() / restore() │
//! └─────────────────────────────────────────────────────────┘
//! │
//! ▼
//! ┌─────────────────────────────────────────────────────────┐
//! │ SimulatedTransport │
//! │ send(to, envelope) -> Result │
//! │ recv(from) -> Result<Envelope> │
//! └─────────────────────────────────────────────────────────┘
//! ```
// Re-export main types
pub use ;
pub use ProtocolEnvelope;
pub use ;
pub use ;
pub use ;