(b *testing.B)
| 539 | } |
| 540 | |
| 541 | func BenchmarkHasTablePrefix(b *testing.B) { |
| 542 | k := kv.Key("foobar") |
| 543 | for i := 0; i < b.N; i++ { |
| 544 | hasTablePrefix(k) |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | func BenchmarkHasTablePrefixBuiltin(b *testing.B) { |
| 549 | k := kv.Key("foobar") |
nothing calls this directly
no test coverage detected