lnd/chainntnfs/test/neutrino/neutrino_test.go

17 lines
332 B
Go
Raw Normal View History

//go:build dev
// +build dev
package neutrino_test
import (
"testing"
chainntnfstest "github.com/lightningnetwork/lnd/chainntnfs/test"
)
// TestInterfaces executes the generic notifier test suite against a neutrino
// powered chain notifier.
func TestInterfaces(t *testing.T) {
chainntnfstest.TestInterfaces(t, "neutrino")
}