dirk_framework 0.1.1

Dependency Injection for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use test_case::test_case;

mod check_output;

#[test_case("coffee", "blueprint")]
#[test_case("coffee", "component_order_of_bindings")]
#[test_case("application", "test_generics")]
#[test_case("car", "blueprint")]
fn test_examples(path: &str, name: &str) {
    check_output::test_main(path, name);
}