blob: 06dcde604e6182f886e810f5570ed6db1c80593f [file] [log] [blame]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package benchhelpers
import (
"testing"
testinginterface "github.com/mitchellh/go-testing-interface"
)
type tbWrapper struct {
testing.TB
}
func (b tbWrapper) Parallel() {
// no-op
}
func TBtoT(tb testing.TB) testinginterface.T {
return tbWrapper{tb}
}