()
| 295 | |
| 296 | #[test] |
| 297 | fn test_dynamic_atom_interning() { |
| 298 | let combined = DynAtomRegistry::<TestAtomSet>::new(); |
| 299 | |
| 300 | let bits1 = combined.str_to_bits("custom"); |
| 301 | let bits2 = combined.str_to_bits("custom"); |
| 302 | |
| 303 | assert_eq!(bits1, bits2, "Same string should atomize to same bits"); |
| 304 | } |
| 305 | |
| 306 | #[test] |
| 307 | fn test_lookup() { |
nothing calls this directly
no test coverage detected