21 lines
304 B
Go
21 lines
304 B
Go
|
package mysql
|
||
|
|
||
|
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{})
|
||
|
}
|