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