2015-09-20 23:31:41 +01:00
|
|
|
// This test isn't testing our function -- make it do that in such a way that
|
2023-05-29 18:39:08 +01:00
|
|
|
// 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-20 23:31:41 +01:00
|
|
|
|
2024-05-22 14:04:12 +01:00
|
|
|
fn is_even(num: i32) -> bool {
|
2015-09-20 23:31:41 +01:00
|
|
|
num % 2 == 0
|
|
|
|
}
|
|
|
|
|
2024-04-17 21:46:21 +01:00
|
|
|
fn main() {
|
|
|
|
// You can optionally experiment here.
|
|
|
|
}
|
|
|
|
|
2015-09-20 23:31:41 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn is_true_when_even() {
|
2019-01-23 19:48:01 +00:00
|
|
|
assert!();
|
2015-09-20 23:31:41 +01:00
|
|
|
}
|
2020-09-21 21:23:19 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-10-10 12:11:57 +01:00
|
|
|
fn is_false_when_odd() {
|
2020-09-21 21:23:19 +01:00
|
|
|
assert!();
|
|
|
|
}
|
2015-09-20 23:31:41 +01:00
|
|
|
}
|