blob: 4fe14d6a1d37a4782a20a1453aaac9de7835f45a [file] [log] [blame]
package testutils
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestInterfaces(t *testing.T) {
SmallTest(t)
// Ensure that our interfaces are compatible.
var _ assert.TestingT = TestingT(nil)
var _ TestingT = (*testing.T)(nil)
var _ TestingT = (*testing.B)(nil)
}