Skip to main content

clankers_testing/
lib.rs

1//! Replay-based testing framework for clankeRS nodes.
2
3pub mod assertions;
4pub mod context;
5
6pub use assertions::{
7    assert_dropped_messages, assert_max_latency, assert_no_panics, assert_topic_exists,
8};
9pub use context::{AggregatedInferenceStats, ReplayContext, ReplayTestResult};