1
0
forked from ROMEO/nexosim
2024-11-26 16:19:22 +01:00

14 lines
385 B
Rust

// Integration tests follow the organization suggested by Matklad:
// https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html
mod model_scheduling;
#[cfg(not(miri))]
mod simulation_clock_sync;
mod simulation_deadlock;
mod simulation_message_loss;
mod simulation_no_recipient;
mod simulation_panic;
mod simulation_scheduling;
#[cfg(not(miri))]
mod simulation_timeout;