pubfnadd(left:usize, right:usize)->usize{left + right
}#[cfg(test)]modtests{usesuper::*;#[test]fnit_works(){let result =add(2,2);assert_eq!(result,4);}}
由cargo test 命令运行项目中所有的测试
$ cargo testCompiling adder v0.1.0 (file:///projects/adder)Finished `test` profile [unoptimized + debuginfo] target(s) in 0.57sRunning unittests src/lib.rs (target/debug/deps/adder-92948b65e88960b4)running 1 test
test tests::it_works ... oktest result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00sDoc-tests adderrunning 0 teststest result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
增加因调用了 panic! 而失败的测试
pubfnadd(left:usize, right:usize)->usize{left + right
}#[cfg(test)]modtests{usesuper::*;#[test]fnexploration(){let result =add(2,2);assert_eq!(result,4);}#[test]fnanother(){panic!("Make this test fail");}}
调用 cargo test 运行测试
$ cargo testCompiling adder v0.1.0 (file:///projects/adder)Finished `test` profile [unoptimized + debuginfo] target(s) in 0.72sRunning unittests src/lib.rs (target/debug/deps/adder-92948b65e88960b4)running 2 tests
test tests::another ... FAILED
test tests::exploration ... okfailures:---- tests::another stdout ----
thread 'tests::another' panicked at src/lib.rs:17:9:
Make this test fail
note: run with `RUST_BACKTRACE=1` environment variable to display a backtracefailures:tests::anothertest result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00serror: test failed, to rerun pass `--lib`
pubfngreeting(name:&str)->String{format!("Hello {}!", name)}#[cfg(test)]modtests{usesuper::*;#[test]fngreeting_contains_name(){let result =greeting("Carol");assert!(result.contains("Carol"),"Greeting did not contain name, value was `{}`",result);}}
5.使用should_panic 检查 panic
pubstructGuess{value:i32,}implGuess{pubfnnew(value:i32)->Guess{if value <1|| value >100{panic!("Guess value must be between 1 and 100, got {}.", value);}Guess{ value }}}#[cfg(test)]modtests{usesuper::*;#[test]#[should_panic]fngreater_than_100(){Guess::new(200);}}
6.将Result<T, E>用于测试
#[cfg(test)]modtests{#[test]fnit_works()->Result<(),String>{if2+2==4{Ok(())}else{Err(String::from("two plus two does not equal four"))}}}
fnprints_and_returns_10(a:i32)->i32{println!("I got the value {}", a);10}#[cfg(test)]modtests{usesuper::*;#[test]fnthis_test_will_pass(){let result =prints_and_returns_10(4);assert_eq!(result,10);}#[test]fnthis_test_will_fail(){let result =prints_and_returns_10(8);assert_eq!(result,5);}}
PS C:\Tools\devTools\vscode\code\rust\显示函数输出> cargo testCompiling 显示函数输出 v0.1.0 (C:\Tools\devTools\vscode\code\rust\显示函数输出)
warning: function `prints_and_returns_10` is never used--> src\lib.rs:1:4|
1 | fn prints_and_returns_10(a: i32) -> i32 {| ^^^^^^^^^^^^^^^^^^^^^|= note: `#[warn(dead_code)]` on by defaultwarning: `显示函数输出` (lib) generated 1 warningFinished `test` profile [unoptimized + debuginfo] target(s) in 0.67sRunning unittests src\lib.rs (target\debug\deps\显示函数输出-68b68f71791c7651.exe)running 2 tests
test tests::this_test_will_pass ... ok
test tests::this_test_will_fail ... FAILEDfailures:---- tests::this_test_will_fail stdout ----
I got the value 8
thread 'tests::this_test_will_fail' panicked at src\lib.rs:17:9:
assertion `left == right` failedleft: 10right: 5
note: run with `RUST_BACKTRACE=1` environment variable to display a backtracefailures:tests::this_test_will_failtest result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
tests/common/mod.rspubfnsetup(){// setup code specific to your library's tests would go here}tests/integration_test.rsuseadder::add_two;modcommon;#[test]fnit_adds_two(){common::setup();assert_eq!(4,add_two(2));}
Floyd 本质:DP 算法特点:多源最短路,能一次性求解所有点对间的最短距离 适用对象:小图,允许边权为负,无法适用于负环图(负环:环上边权之和为负的环,当任意时刻出现 d p [ i ] [ i ] < 0 dp[i][i]<0…
SpringBoot原理解析(二)- Spring Bean的生命周期以及后处理器和回调接口 文章目录 SpringBoot原理解析(二)- Spring Bean的生命周期以及后处理器和回调接口1.Bean的实例化阶段1.1.Bean 实例化的基本流程1.2.Bean 实例化图例1.3.实…
在科学界、工业界以及全球政策制定者的共同努力下,一个名为“科学碳目标倡议”(Science Based Targets initiative,简称SBTi)的全球性合作平台应运而生。这一倡议旨在推动企业和组织设定符合气候科学要求的减排目标,以…