adtest 0.1.0

Library for better test generation
Documentation
1
2
3
4
5
6
7
8
9
use trybuild::TestCases;

#[test]
fn test_error_handling(){
    let tests = TestCases::new();
    tests.compile_fail("tests/errors/multiple-setups.rs");
    tests.compile_fail("tests/errors/multiple-cleanup.rs");
    tests.compile_fail("tests/errors/invalid-attrs.rs");
}