我在测试特定文件的特定功能时遇到问题:
mod test {
//...
#[test]
#[cfg(feature = "proto-igmp")]
fn test_handle_igmp() {
我在这里找到了https://github.com/rust-lang/cargo/issues/1407,我可以通过将它的名字作为参数传递给测试二进制文件来测试特定的测试。但是这样的二进制文件在哪里呢?我可以让println
在测试中工作吗?
我想运行test_handle_igmp
来打印一些东西,看看为什么会发生错误。
1条答案
按热度按时间abithluo1#
您可以在
target/$MODE/$NAME-$hash
中找到它,例如target/debug/example-3beac917983bc7e3.exe
。请注意,可能有多个,一些用于文档测试,一些用于#[test]
函数。也就是说,如果您只想运行
test_handle_igmp
,则可以使用运行测试并查看
println
输出。请参见cargo test --help
或the online documentation。