rust_test_framework 0.1.3-alpha.2

A testing framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use rust_test_framework::test_fixture;

#[test_fixture]
mod tests {
    #[setup]
    fn my_setup() {}

    #[test]
    fn test_dummy() {}
}

fn main() {}