nextest-runner 0.114.0

Core runner logic for cargo nextest.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Reporting of data in a streaming, structured fashion.
//!
//! This module provides structured output reporters:
//!
//! - [`LibtestReporter`]: Compatibility layer with libtest JSON output.
//! - [`RecordReporter`]: Records test runs to disk for later inspection.

mod imp;
mod libtest;
mod recorder;

pub use imp::*;
pub use libtest::*;
pub use recorder::RecordReporter;