Skip to main content

assay_core/
coverage.rs

1//! Coverage metrics for Assay policies.
2//!
3//! This facade keeps the public `assay_core::coverage` API stable while the
4//! implementation is split into smaller reviewable modules.
5
6#[path = "coverage_next/mod.rs"]
7mod coverage_next;
8
9pub use coverage_next::{
10    CoverageAnalyzer, CoverageReport, HighRiskGap, PolicyViolation, PolicyWarning, RuleCoverage,
11    ToolCoverage, TraceRecord,
12};