rstest-log 0.2.0

A wrapper around the test_log crate that supports rstest
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# rstest-log

Wrapper for the [test_log](https://github.com/d-e-s-o/test-log) crate to support
[rstest](https://github.com/la10736/rstest).

## Usage

```rust
use rstest_log::rstest;

#[rstest(tokio::test)]
#[case(1)]
#[case(2)]
async fn test(#[case] val: i64) {
    assert_eq!(val, val);
}
```