#![cfg_attr(coverage_nightly, coverage(off))]
use crate::cli::enums::ProvabilityOutputFormat;
use crate::services::lightweight_provability_analyzer::ProofSummary;
use anyhow::Result;
use std::path::PathBuf;
include!("provability_handler_core.rs");
#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod coverage_tests {
use super::*;
use crate::services::lightweight_provability_analyzer::{
FunctionId, ProofSummary, PropertyType, VerifiedProperty,
};
use std::path::PathBuf;
use tempfile::TempDir;
include!("provability_handler_tests.rs");
include!("provability_handler_tests_part2.rs");
include!("provability_handler_tests_part3.rs");
}