21 lines
309 B
Go
21 lines
309 B
Go
|
package mysql
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"git.hexq.cn/tiglog/mydb/internal/testsuite"
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
)
|
||
|
|
||
|
type GenericTests struct {
|
||
|
testsuite.GenericTestSuite
|
||
|
}
|
||
|
|
||
|
func (s *GenericTests) SetupSuite() {
|
||
|
s.Helper = &Helper{}
|
||
|
}
|
||
|
|
||
|
func TestGeneric(t *testing.T) {
|
||
|
suite.Run(t, &GenericTests{})
|
||
|
}
|