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