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
13
14
15
use rust_test_framework::test_fixture;

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

    #[rust_test_framework::teardown]
    fn my_teardown() {}

    #[test]
    fn test_dummy() {}
}

fn main() {}