Files
hms/crates/erp-server/tests/integration.rs
iven 5aec02e4ad
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled
test(health): 7 个模块集成测试 — 49 个用例全通过
新增 doctor(7)、diagnosis(7)、consent(6)、medication(8)、
dialysis_prescription(7)、follow_up_template(7)、daily_monitoring(7)
覆盖 CRUD、状态流、列表过滤、软删除、租户隔离、乐观锁。
2026-04-27 23:21:04 +08:00

47 lines
1.7 KiB
Rust

#[path = "integration/test_db.rs"]
mod test_db;
#[path = "integration/test_fixture.rs"]
mod test_fixture;
#[path = "integration/auth_tests.rs"]
mod auth_tests;
#[path = "integration/plugin_tests.rs"]
mod plugin_tests;
#[path = "integration/workflow_tests.rs"]
mod workflow_tests;
#[path = "integration/health_patient_tests.rs"]
mod health_patient_tests;
#[path = "integration/health_appointment_tests.rs"]
mod health_appointment_tests;
#[path = "integration/health_pii_encryption_tests.rs"]
mod health_pii_encryption_tests;
#[path = "integration/health_points_tests.rs"]
mod health_points_tests;
#[path = "integration/health_dialysis_tests.rs"]
mod health_dialysis_tests;
#[path = "integration/health_alert_tests.rs"]
mod health_alert_tests;
#[path = "integration/health_device_reading_tests.rs"]
mod health_device_reading_tests;
#[path = "integration/health_follow_up_tests.rs"]
mod health_follow_up_tests;
#[path = "integration/health_consultation_tests.rs"]
mod health_consultation_tests;
#[path = "integration/health_data_tests.rs"]
mod health_data_tests;
#[path = "integration/health_article_tests.rs"]
mod health_article_tests;
#[path = "integration/health_doctor_tests.rs"]
mod health_doctor_tests;
#[path = "integration/health_diagnosis_tests.rs"]
mod health_diagnosis_tests;
#[path = "integration/health_consent_tests.rs"]
mod health_consent_tests;
#[path = "integration/health_medication_tests.rs"]
mod health_medication_tests;
#[path = "integration/health_dialysis_prescription_tests.rs"]
mod health_dialysis_prescription_tests;
#[path = "integration/health_follow_up_template_tests.rs"]
mod health_follow_up_template_tests;
#[path = "integration/health_daily_monitoring_tests.rs"]
mod health_daily_monitoring_tests;