3b7525659c
This commit adds walletdb interface test suite to the existing test set.
16 lines
344 B
Go
16 lines
344 B
Go
package etcd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/btcsuite/btcwallet/walletdb/walletdbtest"
|
|
)
|
|
|
|
// TestWalletDBInterface performs the WalletDB interface test suite for the
|
|
// etcd database driver.
|
|
func TestWalletDBInterface(t *testing.T) {
|
|
f := NewEtcdTestFixture(t)
|
|
defer f.Cleanup()
|
|
walletdbtest.TestInterface(t, dbType, f.BackendConfig())
|
|
}
|