()
| 154 | |
| 155 | #[test] |
| 156 | fn len_and_is_empty() { |
| 157 | let vecs = make_vectors(20, 4); |
| 158 | let codec = build_collection_codec("bbq", &vecs, 4, 8, 50, 1).unwrap(); |
| 159 | assert_eq!(codec.len(), 20); |
| 160 | assert!(!codec.is_empty()); |
| 161 | } |
| 162 | |
| 163 | #[test] |
| 164 | fn quantization_tag() { |
nothing calls this directly
no test coverage detected