feat: added test function to hashmaps2.rs

The existing test functions only check if a kind of fruit exists in the hashmap, but not if the amount of fruits is higher than zero. This new test function solves this.
pull/1546/head
Bert Apperlo 1 year ago committed by GitHub
parent 30291a3c25
commit bbfb4c7e63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -80,4 +80,13 @@ mod tests {
let count = basket.values().sum::<u32>();
assert!(count > 11);
}
#[test]
fn all_fruit_types_in_basket() {
let mut basket = get_fruit_basket();
fruit_basket(&mut basket);
for amount in basket.values() {
assert_ne!(amount, &0);
}
}
}

Loading…
Cancel
Save