github.com/decred/dcrlnd@v0.7.6/lnwallet/test/remote_dcrd/remote_dcrd_test.go (about)

     1  package embedded_dcrd
     2  
     3  import (
     4  	"testing"
     5  
     6  	lnwallettest "github.com/decred/dcrlnd/lnwallet/test"
     7  )
     8  
     9  // TestLightningWallet tests LightningWallet with a remote dcrwallet powered
    10  // by a dcrd node against our suite of interface tests.
    11  func TestLightningWallet(t *testing.T) {
    12  	lnwallettest.TestLightningWallet(t, "remotedcrwallet", "dcrd")
    13  
    14  }