//! Consumer Health UAT Scenarios //! //! Integration tests that validate the four key consumer health scenarios: //! 1. GLP-1 Muscle Loss Contradiction (Skeptic Lens) //! 2. Gastroparesis Multi-Source (Source Hierarchy) //! 3. Layered Consensus (Per-Tier Positions) //! 4. Time Travel Query (as_of Snapshot) //! //! These tests assume a running stemedb-api instance at the configured URL. //! Run with: `STEMEDB_API_URL=http://localhost:18180 cargo test --test consumer_health_uat` // Allow println in tests for UAT progress reporting #![allow(clippy::print_stdout)] // Allow expect in tests - panicking on setup failures is acceptable #![allow(clippy::expect_used)] pub mod scenarios; pub mod setup;