kithara-test-utils 0.0.1-alpha4

kithara test runtime: probe/hang/mock helpers (no-op in release).
1
2
3
4
5
6
7
8
9
#[cfg(feature = "hang")]
pub(crate) mod real;
#[cfg(feature = "hang")]
pub use real::*;

#[cfg(not(feature = "hang"))]
mod noop;
#[cfg(not(feature = "hang"))]
pub use noop::*;