()
| 228 | |
| 229 | #[test] |
| 230 | fn query_hash_deterministic() { |
| 231 | let h1 = query_hash("cpu", 1000, 2000, 60000); |
| 232 | let h2 = query_hash("cpu", 1000, 2000, 60000); |
| 233 | assert_eq!(h1, h2); |
| 234 | |
| 235 | let h3 = query_hash("mem", 1000, 2000, 60000); |
| 236 | assert_ne!(h1, h3); |
| 237 | } |
| 238 | } |
nothing calls this directly
no test coverage detected