mydb/adapter/sqlite/record_test.go
2023-09-18 15:15:42 +08:00

21 lines
305 B
Go

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