(b *testing.B)
| 71 | } |
| 72 | |
| 73 | func BenchmarkMap_NoValue(b *testing.B) { |
| 74 | ctx := testlogging.Context(b) |
| 75 | m, err := bigmap.NewMapWithOptions(ctx, nil) |
| 76 | require.NoError(b, err) |
| 77 | |
| 78 | defer m.Close(ctx) |
| 79 | |
| 80 | benchmarkMap(b, m, []byte{}) |
| 81 | } |
| 82 | |
| 83 | func BenchmarkMap_WithValue(b *testing.B) { |
| 84 | ctx := testlogging.Context(b) |
nothing calls this directly
no test coverage detected