test-better 0.2.1

Result-returning tests with `?`: composable matchers, rich failure output, no `.unwrap()`.
Documentation
1
2
3
4
5
6
7
8
//! A `#[test_case]` whose argument count does not match the function's
//! parameter count is a compile error.
use test_better::test_case;

#[test_case(1, 2, 3 ; "too many")]
fn takes_one(_value: i32) {}

fn main() {}