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
16pub use displayer::{
17    FinalStatusLevel, MaxProgressRunning, ShowProgress, StatusLevel, TestOutputDisplay,
18};
19pub use error_description::*;
20pub use helpers::highlight_end;
21pub use imp::*;