货物测试不显示任何输出也不显示所有测试

时间:2021-01-26 13:32:23

标签: testing rust rust-cargo

运行 cargo test 不会显示所有 4 个测试,也不会显示我运行的任何测试的任何输出。 我有 4 个测试:

test common::tests::test_workingdays 
test documents::tests::create_docs 
test emailer::tests::test_attachments 
test emailer::tests::test_format_attachments 
$ cargo test
   Compiling te-pm-analytics v0.1.0 (/home/charlie/thoughtexpress/rust/te-pm-analytics)
    Finished test [unoptimized + debuginfo] target(s) in 2.44s
     Running target/debug/deps/main-253a09bf91ed177c

running 4 tests
test common::tests::test_workingdays ... ok
test emailer::tests::test_attachments ... FAILED
error: test failed, to rerun pass '--bin main'

它只运行其中的两个,甚至不给我关于失败的信息。

1 个答案:

答案 0 :(得分:2)

所以发生这种情况的原因是我进行了 4 次测试

test common::tests::test_workingdays 
test documents::tests::create_docs 
test emailer::tests::test_attachments 
test emailer::tests::test_format_attachments 

test_attachmentstest_format_attachments 都失败了,但是 test_format_attachments 在它正在测试的函数中有一个 std::process::exit(1) 条件,因此它在测试之前终止了进程返回。