test-better 0.2.1

Result-returning tests with `?`: composable matchers, rich failure output, no `.unwrap()`.
Documentation
1
2
3
4
5
6
7
//! A `;` in a `#[test_case]` must be followed by a string-literal label.
use test_better::test_case;

#[test_case(1 ;)]
fn takes_one(_value: i32) {}

fn main() {}