1 package testutil 2 3 import "testing" 4 5 // This will fail to compile if the TestingT interface is changed in a way 6 // that doesn't conform to testing.T. 7 var _ TestingT = (*testing.T)(nil) 8
View as plain text