()
| 47 | |
| 48 | #[test] |
| 49 | fn create_and_check() { |
| 50 | let bm = from_ids(vec![1, 5, 10, 100]); |
| 51 | assert!(bm.contains(1)); |
| 52 | assert!(bm.contains(10)); |
| 53 | assert!(!bm.contains(2)); |
| 54 | assert_eq!(bm.len(), 4); |
| 55 | } |
| 56 | |
| 57 | #[test] |
| 58 | fn intersect_filters() { |
nothing calls this directly
no test coverage detected