(t *testing.T)
| 14 | ) |
| 15 | |
| 16 | func TestFastStringToUint32Empty(t *testing.T) { |
| 17 | ms := mapSliceN(map[string]uint32{"": 1, "a": 2, "foo": 3, "ß": 4}, 0) |
| 18 | checkWithMapSlice(t, ms) |
| 19 | } |
| 20 | |
| 21 | func TestFastStringToUint32BigSpan(t *testing.T) { |
| 22 | ms := mapSliceN(map[string]uint32{"a!": 1, "a~": 2}, 2) |
nothing calls this directly
no test coverage detected