1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Galois-law proptest batteries for `connections::core::*`.
//!
//! Single integration test binary aggregating the per-host-type
//! batteries. Mirrors `src/core/`'s `iNNN.rs` / `uNNN.rs` layout.
//! Hosted as one binary rather than ten so `cargo test` invokes
//! ten fewer linker runs; per-module rustc memory stays bounded
//! because each `mod <name>;` translates to its own
//! object-file-level translation unit.
//!
//! `#[path]` attributes are required because the integration-test
//! crate root resolves `mod foo;` against the parent directory
//! (`tests/`), not a stem-named subdirectory.