mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 22:25:24 +01:00
14 lines
248 B
Go
14 lines
248 B
Go
|
//go:build !test_db_postgres
|
||
|
// +build !test_db_postgres
|
||
|
|
||
|
package sqldb
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
// NewTestDB is a helper function that creates an SQLite database for testing.
|
||
|
func NewTestDB(t *testing.T) *SqliteStore {
|
||
|
return NewTestSqliteDB(t)
|
||
|
}
|