test_r_core/
lib.rs

1pub mod args;
2pub mod bench;
3mod execution;
4pub mod internal;
5mod ipc;
6mod output;
7mod stats;
8#[cfg(feature = "tokio")]
9mod tokio;
10
11#[allow(dead_code)]
12mod sync;
13
14#[cfg(not(feature = "tokio"))]
15pub use sync::test_runner;
16
17#[cfg(feature = "tokio")]
18pub use tokio::test_runner;