trpl-zh-cn/listings/ch11-writing-automated-tests/listing-11-10/output.txt

27 lines
796 B
Plaintext
Raw Normal View History

2022-02-06 16:43:51 +08:00
$ cargo test
Compiling silly-function v0.1.0 (file:///projects/silly-function)
Finished `test` profile [unoptimized + debuginfo] target(s) in 0.58s
2023-01-16 17:34:52 +08:00
Running unittests src/lib.rs (target/debug/deps/silly_function-160869f38cff9166)
2022-02-06 16:43:51 +08:00
running 2 tests
test tests::this_test_will_fail ... FAILED
test tests::this_test_will_pass ... ok
failures:
---- tests::this_test_will_fail stdout ----
I got the value 8
thread 'tests::this_test_will_fail' panicked at src/lib.rs:19:9:
assertion `left == right` failed
left: 5
right: 10
2022-02-06 16:43:51 +08:00
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
failures:
tests::this_test_will_fail
test result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
2023-01-16 17:34:52 +08:00
error: test failed, to rerun pass `--lib`