nextest_runner/runner/
mod.rs

1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! The test runner.
5//!
6//! For more information about the design of the runner loop, see the design
7//! document: [_The runner loop_].
8//!
9//! The main structure in this module is [`TestRunner`].
10//!
11//! [_The runner loop_]: https://nexte.st/docs/design/architecture/runner-loop/
12
13mod dispatcher;
14mod executor;
15mod imp;
16mod internal_events;
17mod script_helpers;
18
19#[cfg(unix)]
20#[path = "unix.rs"]
21mod os;
22
23#[cfg(windows)]
24#[path = "windows.rs"]
25mod os;
26
27use dispatcher::*;
28use executor::*;
29pub use imp::*;
30use internal_events::*;
31use script_helpers::*;