completed test part

This commit is contained in:
Samuele Iacoponi
2026-03-08 16:39:04 +01:00
parent 8c99d4187d
commit bf88815583
8 changed files with 105 additions and 20 deletions

View File

@@ -13,11 +13,12 @@ fn main() {
mod tests {
// TODO: Import `is_even`. You can use a wildcard to import everything in
// the outer module.
use super::*;
#[test]
fn you_can_assert() {
// TODO: Test the function `is_even` with some values.
assert!();
assert!();
assert!(is_even(32));
assert!(is_even(12));
}
}