nextest_runner/reporter/
mod.rs

1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Report the results of a test run in human and machine-readable formats.
5//!
6//! The main type here is [`Reporter`], which is constructed via a [`ReporterBuilder`].
7
8mod aggregator;
9mod displayer;
10mod error_description;
11pub mod events;
12mod helpers;
13mod imp;
14pub mod structured;
15#[cfg(test)]
16pub(crate) mod test_helpers;
17
18pub(crate) use displayer::{DisplayReporter, DisplayReporterBuilder, StatusLevels};
19pub use displayer::{
20    FinalStatusLevel, MaxProgressRunning, ShowProgress, ShowTerminalProgress, StatusLevel,
21    TestOutputDisplay,
22};
23pub use error_description::*;
24pub use helpers::highlight_end;
25pub use imp::*;