(b *testing.B)
| 24 | } |
| 25 | |
| 26 | func BenchmarkHashString_Long(b *testing.B) { |
| 27 | b.RunParallel(func(pb *testing.PB) { |
| 28 | for pb.Next() { |
| 29 | _ = fnv.HashString("HELLO,WORLDHELLO,WORLDHELLO,WORLDHELLO,WORLDHELLO,WORLDHELLO,WORLD") |
| 30 | } |
| 31 | }) |
| 32 | } |
nothing calls this directly
no test coverage detected