mydb/adapter/mysql/sql_test.go
2023-09-18 15:15:42 +08:00

21 lines
289 B
Go

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{})
}