Files

13 lines
147 B
Go
Raw Permalink Normal View History

2022-05-25 11:17:34 +02:00
//go:build cgo
// +build cgo
package sql
import (
"testing"
)
func TestSQLite3(t *testing.T) {
testDB(t, &SQLite3{":memory:"}, false, true)
}