#![deny(warnings)]
#![deny(unsafe_code)]
#![deny(clippy::unwrap_used)]
#![deny(clippy::expect_used)]
#![deny(clippy::panic)]
pub mod assertion_analyzer;
pub mod false_positive_detector;
pub mod mutation_analyzer;
pub mod report_generator;
pub mod types;
pub use assertion_analyzer::{AssertionAnalyzer, TestAssertion};
pub use false_positive_detector::{
CriticalPathGap, FalsePositive, FalsePositiveDetector, FalsePositiveReport, Severity,
};
pub use mutation_analyzer::MutationAnalyzer;
pub use report_generator::{QualityReport, ReportGenerator};
pub use types::*;