trpl-zh-cn/listings/ch11-writing-automated-tests/output-only-03-multiple-tests/src/lib.rs

24 lines
335 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
pub fn add_two(a: i32) -> i32 {
a + 2
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn add_two_and_two() {
assert_eq!(4, add_two(2));
}
#[test]
fn add_three_and_two() {
assert_eq!(5, add_two(3));
}
#[test]
fn one_hundred() {
assert_eq!(102, add_two(100));
}
}