21 lines
305 B
Go
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{})
|
|
}
|