libtest2-harness 0.0.3

An experimental replacement for the core of libtest
Documentation
//! An experimental replacement for the core of libtest

#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(clippy::print_stderr)]
// #![warn(clippy::print_stdout)]

mod case;
mod context;
mod harness;
mod notify;

pub mod cli;

pub use case::*;
pub use context::*;
pub use harness::*;
pub use notify::RunMode;

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;