rustlings/exercises/17_tests/tests1.rs

26 lines
512 B
Rust
Raw Normal View History

2024-10-28 20:46:17 +00:00
// Tests are important to ensure that your code does what you think it should
// do.
fn is_even(n: i64) -> bool {
n % 2 == 0
}
fn main() {
// You can optionally experiment here.
}
#[cfg(test)]
mod tests {
// TODO: Import `is_even`. You can use a wildcard to import everything in
// the outer module.
use crate::is_even;
2024-10-28 20:46:17 +00:00
#[test]
fn you_can_assert() {
// TODO: Test the function `is_even` with some values.
assert!(is_even(4));
assert!(is_even(6));
2024-10-28 20:46:17 +00:00
}
}