#断言 #测试 #简化 #集合 #函数 #输入 #报告失败

tiny-test

tiny-test 是简化 Rust 中测试断言的函数集合

1 个不稳定版本

0.1.0 2022年4月21日

#1167 in 数据结构

MIT/Apache

7KB

tiny-test

tiny-test 是简化 Rust 中测试断言的函数集合。

用法

collect_fails!

基本用法

#[test]
fn test_parse_fragment_any() {
    report_fails(collect_fails!(
        // input type
        &str,
        // output type
        IResult<&str, Fragment, ()>,
        // test cases in format (input, expected)
        vec![
            ("/", Ok(("", Fragment::Separator))),
            ("///", Ok(("", Fragment::Separator))),
            ("path/to/file", Ok(("/to/file", Fragment::Plain("path"))))
        ].into_iter(),
        // test function
        parse_fragment
    ));
}

自定义断言

fn test_in_range() {
    report_fails(collect_fails!(
        usize,
        std::ops::Range<usize>,
        usize,
        vec![(2, 1..4), (3, 4..6), (0, 1..3)].into_iter(),
        |input| input + 2,
        |output: &usize, expected: &Range<usize>| expected.contains(output)
    ));
}

report_fails

通常与 collect_fails! 一起使用

基本用法

report_fails(vec![
    ("input string", "expected string", "", 1),
    ("hello world!", "hello papa!", "hello mom!", 2),
])

// One or more assertions failed:
// test case 1: assertion failed for input `"input string"`
//         expected `"expected string"`
//         result `""`
// test case 2: assertion failed for input `"hello world!"`
//         expected `"hello papa!"`
//

无运行时依赖