mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 04:41:49 +08:00
23 lines
718 B
Plaintext
23 lines
718 B
Plaintext
$ cargo test
|
|
Compiling greeter v0.1.0 (file:///projects/greeter)
|
|
Finished `test` profile [unoptimized + debuginfo] target(s) in 0.91s
|
|
Running unittests src/lib.rs (target/debug/deps/greeter-170b942eb5bf5e3a)
|
|
|
|
running 1 test
|
|
test tests::greeting_contains_name ... FAILED
|
|
|
|
failures:
|
|
|
|
---- tests::greeting_contains_name stdout ----
|
|
thread 'tests::greeting_contains_name' panicked at src/lib.rs:12:9:
|
|
assertion failed: result.contains("Carol")
|
|
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
|
|
|
|
|
failures:
|
|
tests::greeting_contains_name
|
|
|
|
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
|
|
|
|
error: test failed, to rerun pass `--lib`
|