(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func TestFastStringToUint32(t *testing.T) { |
| 27 | const nStrs = 8192 |
| 28 | m := randomSmallStrings(nStrs, 8) |
| 29 | checkWithMapSlice(t, mapSliceN(m, len(m)/2)) |
| 30 | } |
| 31 | |
| 32 | func checkWithMapSlice(t *testing.T, ms mapSlice) { |
| 33 | fm := faststringmap.NewUint32Store(ms) |
nothing calls this directly
no test coverage detected