book/listings/ch11-writing-automated-tests/output-only-01-show-output/output.txt

35 lines
932 B
Plaintext
Raw Normal View History

$ cargo test -- --show-output
Compiling silly-function v0.1.0 (file:///projects/silly-function)
2020-01-26 01:58:49 +00:00
Finished test [unoptimized + debuginfo] target(s) in 0.60s
2022-06-04 01:50:21 +00:00
Running unittests src/lib.rs (target/debug/deps/silly_function-160869f38cff9166)
2020-01-25 19:59:34 +00:00
running 2 tests
test tests::this_test_will_fail ... FAILED
test tests::this_test_will_pass ... ok
successes:
---- tests::this_test_will_pass stdout ----
I got the value 4
successes:
tests::this_test_will_pass
failures:
---- tests::this_test_will_fail stdout ----
I got the value 8
2023-02-10 16:01:09 +00:00
thread 'tests::this_test_will_fail' panicked at 'assertion failed: `(left == right)`
2020-01-25 19:59:34 +00:00
left: `5`,
right: `10`', src/lib.rs:19:9
2020-11-30 20:14:06 +00:00
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
2020-01-25 19:59:34 +00:00
failures:
tests::this_test_will_fail
2021-02-12 21:46:47 +00:00
test result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
2020-01-25 19:59:34 +00:00
2022-11-04 02:10:09 +00:00
error: test failed, to rerun pass `--lib`