mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 17:55:36 +01:00
16 lines
305 B
Go
16 lines
305 B
Go
|
// +build dev
|
||
|
|
||
|
package btcd_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
chainntnfstest "github.com/lightningnetwork/lnd/chainntnfs/test"
|
||
|
)
|
||
|
|
||
|
// TestInterfaces executes the generic notifier test suite against a btcd
|
||
|
// powered chain notifier.
|
||
|
func TestInterfaces(t *testing.T) {
|
||
|
chainntnfstest.TestInterfaces(t, "btcd")
|
||
|
}
|