Rust 程式設計影片教程對應講解內容-測試

linghuyichong發表於2020-01-04

頭條地址:https://www.ixigua.com/i676544267458235648...
B站地址:https://www.bilibili.com/video/av78062009?...
網易雲課堂地址:https://study.163.com/course/introduction....

1、編寫測試

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}

2、執行測試

cargo test

3、使用assert宏

std::assert!
std::assert_eq!
std::assert_ne!
本作品採用《CC 協議》,轉載必須註明作者和本文連結
令狐一衝

相關文章