3fc010301d
Quick CI / quick-test (push) Failing after 1m12s
Multi-Platform CI / test-platforms (ubuntu-22.04) (push) Successful in 7m13s
Multi-Platform CI / test-platforms (windows-latest) (push) Successful in 7m8s
Multi-Platform CI / package (ubuntu-22.04) (push) Failing after 7m12s
Multi-Platform CI / package (windows-latest) (push) Failing after 7m13s
10 lines
230 B
Rust
10 lines
230 B
Rust
#[test]
|
|
fn default_patient_heart() {
|
|
let mut p = medicallib_rust::Patient::new("int-01")
|
|
.unwrap()
|
|
.initialize_default();
|
|
p.update(0.1);
|
|
let s = p.patient_summary();
|
|
assert!(s.contains("Heart"));
|
|
}
|