()
| 328 | |
| 329 | #[test] |
| 330 | fn test_u8() { |
| 331 | let mut hll = HyperLogLog::<[u8]>::new(); |
| 332 | for i in 0..1000 { |
| 333 | let s = i.to_string(); |
| 334 | let b = s.as_bytes(); |
| 335 | hll.add(b); |
| 336 | } |
| 337 | compare_with_delta(hll.count(), 1000); |
| 338 | } |
| 339 | |
| 340 | #[test] |
| 341 | fn test_string() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…