//! Integration Tests Main Harness //! //! Individual test modules (auth_flow_tests, rate_limiting_tests, service_proxy_tests) //! are compiled as standalone test binaries by Cargo. They are NOT re-included here //! to avoid loading `common/mod.rs` multiple times. //! //! Run with: cargo test --test integration_tests mod common; #[cfg(test)] mod tests { #[test] fn integration_harness_ok() { // Verify harness compiles; actual tests live in dedicated test binaries. } }