subtest-impl 0.0.1

Implementation detail of the `subtest` crate
Documentation
1
2
3
4
5
6
7
8
#[subtest]
fn parent(arg: i32, arg2: bool) {
    #[subtest]
    fn child() {
        #[subtest]
        fn grandchild() {}
    }
}