測試模組
單元測試通常會位於巢狀模組中 (在 Playground 上執行測試):
fn helper(a: &str, b: &str) -> String { format!("{a} {b}") } pub fn main() { println!("{}", helper("Hello", "World")); } #[cfg(test)] mod tests { use super::*; #[test] fn test_helper() { assert_eq!(helper("foo", "bar"), "foo bar"); } }
- 這有助於您對私人輔助程式進行單元測試。
- 只有在執行
cargo test
時,#[cfg(test)]
屬性才會生效。