I'm having problem on a specific function of a test of a specific file:
mod test {
//...
#[test]
#[cfg(feature = "proto-igmp")]
fn test_handle_igmp() {
I've found here https://github.com/rust-lang/cargo/issues/1407 that I can test specific tests by passing its name as an argument to the test binary. But where's such binary? And can I make println
work inside tests?
I want to run test_handle_igmp
to print some things and see why the error is happening.