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