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