rustlings/exercises/17_tests/tests2.rs

24 lines
449 B
Rust
Raw Permalink Normal View History

2024-06-27 17:40:26 +03:00
// Calculates the power of 2 using a bit shift.
// `1 << n` is equivalent to "2 to the power of n".
fn power_of_2(n: u8) -> u64 {
1 << n
}
2015-09-21 01:31:41 +03:00
fn main() {
// You can optionally experiment here.
}
2015-09-21 01:31:41 +03:00
#[cfg(test)]
mod tests {
2024-06-27 17:40:26 +03:00
use super::*;
2015-09-21 01:31:41 +03:00
#[test]
fn you_can_assert_eq() {
2024-06-27 17:40:26 +03:00
// TODO: Test the function `power_of_2` with some values.
assert_eq!();
assert_eq!();
assert_eq!();
2015-09-21 01:31:41 +03:00
assert_eq!();
}
}