pmat 3.16.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_severity_ordering() {
        assert!(Severity::High > Severity::Medium);
        assert!(Severity::Medium > Severity::Low);
    }

    #[test]
    fn test_repetition_severity() {
        let config = EntropyConfig::default();
        let detector = ViolationDetector::new(config);

        assert_eq!(detector.calculate_repetition_severity(3), Severity::Low);
        assert_eq!(detector.calculate_repetition_severity(7), Severity::Medium);
        assert_eq!(detector.calculate_repetition_severity(15), Severity::High);
    }
}

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod property_tests {
    use proptest::prelude::*;

    proptest! {
        #[test]
        fn basic_property_stability(_input in ".*") {
            // Basic property test for coverage
            prop_assert!(true);
        }

        #[test]
        fn module_consistency_check(_x in 0u32..1000) {
            // Module consistency verification
            prop_assert!(_x < 1001);
        }
    }
}

// Coverage tests: type serialization, utility methods, pattern matching
include!("violation_detector_coverage_tests.rs");

// Detection tests: cross-file duplication, inconsistency, dedup, sorting, filtering
include!("violation_detector_detection_tests.rs");