mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-29 07:19:17 +00:00
25 lines
514 B
Rust
25 lines
514 B
Rust
// 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 super::is_even;
|
|
|
|
#[test]
|
|
fn you_can_assert() {
|
|
// TODO: Test the function `is_even` with some values.
|
|
assert!(is_even(10));
|
|
assert!(!is_even(11));
|
|
}
|
|
}
|