test-casing 0.1.3

Parameterized test cases and test decorators
Documentation
1
2
3
4
5
6
7
8
use test_casing::test_casing;

#[test_casing(2, ["test", "this"])]
fn tested_function<S: Into<String>>(_arg: S) {
    // Does nothing
}

fn main() {}