github.com/Tri-stone/burrow@v0.25.0/vent/sqldb/sqldb_sqlite_test.go (about) 1 // +build integration sqlite 2 3 package sqldb_test 4 5 import ( 6 "testing" 7 8 "github.com/hyperledger/burrow/vent/test" 9 ) 10 11 func TestSqliteSynchronizeDB(t *testing.T) { 12 testSynchronizeDB(t, test.SqliteVentConfig("")) 13 } 14 15 func TestSqliteCleanDB(t *testing.T) { 16 testCleanDB(t, test.SqliteVentConfig("")) 17 } 18 19 func TestSqliteSetBlock(t *testing.T) { 20 testSetBlock(t, test.SqliteVentConfig("")) 21 }