dyntest 0.2.2

Dynamically create test cases.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use dyntest::{dyntest, DynTester};

dyntest!(test);

fn test(t: &mut DynTester) {
  t.group("foo", |t| {
    t.group("bar", |t| {
      t.test("baz", || {});
    });
    t.test("qux", || {});
  });
}