package mysql import ( "testing" "git.hexq.cn/tiglog/mydb/internal/testsuite" "github.com/stretchr/testify/suite" ) type SQLTests struct { testsuite.SQLTestSuite } func (s *SQLTests) SetupSuite() { s.Helper = &Helper{} } func TestSQL(t *testing.T) { suite.Run(t, &SQLTests{}) }