etdl-compiler 0.2.0

ETDL compiler: IEC 61025 fault tree resolution, MOCUS cut sets, ECEL type-checking, semantic validation, and code generation for event-driven microservices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Runs the ETDL conformance suite (declarative cases in `conformance/`).
//! Kept separate so the suite can grow without touching compiler internals.

#[path = "../../conformance/conformance.rs"]
mod conformance;

#[test]
fn etdl_conformance_suite() {
    // The suite defines its own #[test]s; this wrapper just ensures the module
    // compiles and is linked.
    let _ = conformance::run_conformance_main();
}