1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Report the results of a test run in human and machine-readable formats.
//!
//! The main type here is [`TestReporter`], which is constructed via a [`TestReporterBuilder`].

mod aggregator;
mod displayer;
mod helpers;
pub mod structured;

pub use displayer::*;
pub use helpers::{heuristic_extract_description, highlight_end, DescriptionKind};