rustlings/exercises/17_tests/tests3.rs

27 lines
496 B
Rust
Raw Normal View History

2015-09-21 01:31:41 +03:00
// This test isn't testing our function -- make it do that in such a way that
// the test passes. Then write a second test that tests whether we get the
// result we expect to get when we call `is_even(5)`.
2015-09-21 01:31:41 +03:00
2024-05-22 16:04:12 +03:00
fn is_even(num: i32) -> bool {
2015-09-21 01:31:41 +03:00
num % 2 == 0
}
fn main() {
// You can optionally experiment here.
}
2015-09-21 01:31:41 +03:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn is_true_when_even() {
2019-01-23 22:48:01 +03:00
assert!();
2015-09-21 01:31:41 +03:00
}
#[test]
fn is_false_when_odd() {
assert!();
}
2015-09-21 01:31:41 +03:00
}