mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 06:35:07 +01:00
17 lines
390 B
Go
17 lines
390 B
Go
//go:build dev
|
|
// +build dev
|
|
|
|
package bitcoind_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
chainntnfstest "github.com/lightningnetwork/lnd/chainntnfs/test"
|
|
)
|
|
|
|
// TestInterfaces executes the generic notifier test suite against a bitcoind
|
|
// powered chain notifier.
|
|
func TestInterfaces(t *testing.T) {
|
|
chainntnfstest.TestInterfaces(t, "bitcoind")
|
|
chainntnfstest.TestInterfaces(t, "bitcoind-rpc-polling")
|
|
}
|