clankers-testing 0.1.0

Replay-based testing tools for clankeRS
Documentation
1
2
3
4
5
6
7
8
9
//! Replay-based testing framework for clankeRS nodes.

pub mod assertions;
pub mod context;

pub use assertions::{
    assert_dropped_messages, assert_max_latency, assert_no_panics, assert_topic_exists,
};
pub use context::{ReplayContext, ReplayTestResult};