frondeus / test-case

Rust procedural macro attribute for adding test cases easily
MIT License
610 stars 38 forks source link

Ignoring test cases #145

Open barafael opened 1 month ago

barafael commented 1 month ago

It would be nice to ignore specific test cases, like in:

    #[test_case(1, 2, 3; ignore = true, "test name")]

The difference to commenting out the inputs would be that the ignored tests are listed in the output of cargo test.