aprender-test-lib 0.31.1

Probar: Rust-native testing framework with pixel coverage, TUI snapshots, and visual regression
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Coverage Report Formatters (Feature 11, 12, 13)
//!
//! LCOV, HTML, and Cobertura XML format generators for CI integration.
//!
//! ## EXTREME TDD: Tests written FIRST per spec

mod cobertura;
mod html;
mod lcov;

pub use cobertura::CoberturaFormatter;
pub use html::{HtmlFormatter, HtmlReportConfig, Theme};
pub use lcov::LcovFormatter;