(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestHash(t *testing.T) { |
| 12 | for _, key := range []string{"costarring", "liquid", "hello"} { |
| 13 | var h = fnv.HashString(key) |
| 14 | t.Log(key + " => " + types.String(h)) |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | func BenchmarkHashString(b *testing.B) { |
| 19 | b.RunParallel(func(pb *testing.PB) { |
nothing calls this directly
no test coverage detected