Skip to main content

ferrous_forge/
test_coverage.rs

1//! Test coverage module - now modularized for better organization
2
3/// Coverage analysis engine and metrics computation.
4pub mod analyzer;
5/// Coverage report generation and output formatting.
6pub mod reporting;
7/// Unit tests for the test coverage module.
8pub mod tests;
9/// Data types for coverage configuration and reports.
10pub mod types;
11/// Shared utility functions for coverage analysis.
12pub mod utils;
13
14pub use analyzer::CoverageAnalyzer;
15pub use types::{CoverageConfig, CoverageReport, FileCoverage};