一、编写测试
cargo创建测试项目
使用Clion打开工程,lib.rs代码如下
然后运行这个测试看看效果
增加一个单测
#[test]
fn new_test() {
panic!("make test fail");
}
二、断言
#[derive(Debug)]
pub struct Rectangle{
length:u32,
width:u32,
}
impl Rectangle {
pub fn can_hold(&self,other:&Rectangle) ->bool {
self.length > other.length && self.width > other.width
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn larger_can_hold_smaller() {
let larger = Rectangle {
length:8,
width:8,
};
let smaller = Rectangle {
length:5,
width:1,
};
assert!(larger.can_hold(&smaller));
}
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.e1idc.net