use koru_lambda_core::Distinction;
#[allow(dead_code)]
pub mod helpers {
use super::*;
pub fn assert_identical_ids(d1: &Distinction, d2: &Distinction, path_description: &str) {
assert_eq!(
d1.id(),
d2.id(),
"FALSIFIED: Path dependence detected. {} yielded different results.\n Path 1 ID: {}\n Path 2 ID: {}",
path_description,
d1.id(),
d2.id()
);
}
pub fn report_sustained(test_name: &str, details: &str) {
println!("\nHypothesis sustained.");
println!(" Test: {}", test_name);
println!(" {}", details);
}
}