package sqlite import ( "testing" ) func TestOpenDB(t *testing.T) { _, err := Open("", true) if err != nil { t.Fatal(err) } }