2022-02-06 16:43:51 +08:00
|
|
|
$ cargo test
|
|
|
|
Compiling adder v0.1.0 (file:///projects/adder)
|
2024-06-06 21:23:21 +08:00
|
|
|
Finished `test` profile [unoptimized + debuginfo] target(s) in 0.61s
|
2023-01-16 17:34:52 +08:00
|
|
|
Running unittests src/lib.rs (target/debug/deps/adder-92948b65e88960b4)
|
2022-02-06 16:43:51 +08:00
|
|
|
|
|
|
|
running 1 test
|
|
|
|
test tests::it_adds_two ... FAILED
|
|
|
|
|
|
|
|
failures:
|
|
|
|
|
|
|
|
---- tests::it_adds_two stdout ----
|
2024-10-20 23:44:05 +08:00
|
|
|
thread 'tests::it_adds_two' panicked at src/lib.rs:12:9:
|
2024-06-06 21:23:21 +08:00
|
|
|
assertion `left == right` failed
|
2024-10-20 23:44:05 +08:00
|
|
|
left: 5
|
|
|
|
right: 4
|
2022-02-06 16:43:51 +08:00
|
|
|
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
|
|
|
|
|
|
|
|
|
|
|
failures:
|
|
|
|
tests::it_adds_two
|
|
|
|
|
|
|
|
test result: FAILED. 0 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`
|