mirror of https://github.com/mattn/go-sqlite3.git
Add test for Version
This commit is contained in:
parent
a528a30852
commit
5e6658a5c8
|
@ -743,3 +743,10 @@ func TestStress(t *testing.T) {
|
||||||
db.Close()
|
db.Close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestVersion(t *testing.T) {
|
||||||
|
s, n, id, := Version()
|
||||||
|
if s == "" || n == 0 || id == 0 {
|
||||||
|
t.Errorf("Version failed %q, %d, %q\n", s, n, id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue