libtest2-harness 0.0.3

An experimental replacement for the core of libtest
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub(crate) struct Style;

impl std::fmt::Display for Style {
    fn fmt(&self, _formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        Ok(())
    }
}

pub(crate) const FAILED: Style = Style;
pub(crate) const OK: Style = Style;
pub(crate) const IGNORED: Style = Style;