21 lines
290 B
Go
21 lines
290 B
Go
package sqlite
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.hexq.cn/tiglog/mydb/internal/testsuite"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type SQLTests struct {
|
|
testsuite.SQLTestSuite
|
|
}
|
|
|
|
func (s *SQLTests) SetupSuite() {
|
|
s.Helper = &Helper{}
|
|
}
|
|
|
|
func TestSQL(t *testing.T) {
|
|
suite.Run(t, &SQLTests{})
|
|
}
|