This commit is contained in:
jamesk 2024-03-21 17:24:08 -04:00
parent 9cf69c87df
commit d056d589aa
2 changed files with 21 additions and 0 deletions

View File

@ -76,3 +76,15 @@ impl Comparer for CompareMode {
}
}
}
#[cfg(test)]
mod tests {
use crate::comparemode::CompareMode;
#[test]
fn compare_mode() {
let cm = CompareMode::new(vec![], "".to_string(), "".to_string());
}
}

View File

@ -30,3 +30,12 @@ fn main() {
app.run()
}
// #[cfg(test)]
// mod tests {
// #[test]
// fn test() {
//
//
// }
// }