mithril_cardano_node_chain/test/double/
mod.rs

1//! Test doubles
2//!
3//! Enable unit testing of blockchain interactions with controlled inputs and predictable behavior.
4
5mod block_scanner;
6mod chain_observer;
7mod chain_reader;
8
9pub use block_scanner::{DumbBlockScanner, DumbBlockStreamer};
10pub use chain_observer::FakeChainObserver;
11pub use chain_reader::FakeChainReader;