dactor_mock/lib.rs
1//! Mock multi-node cluster for testing dactor actor systems.
2//!
3//! Provides `MockCluster` for simulating a cluster of actor nodes
4//! in a single process. Use for unit testing cross-node messaging,
5//! fault injection, and cluster behavior without real networking.
6
7pub mod cluster;
8pub mod network;
9pub mod node;
10
11pub use cluster::MockCluster;
12pub use network::MockNetwork;
13pub use node::MockNode;