mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-19 10:37:23 +01:00
48 lines
763 B
Go
48 lines
763 B
Go
//go:build rpctest
|
|
// +build rpctest
|
|
|
|
package itest
|
|
|
|
var allTestCases = []*testCase{
|
|
{
|
|
name: "async payments benchmark",
|
|
test: testAsyncPayments,
|
|
},
|
|
{
|
|
name: "async bidirectional payments",
|
|
test: testBidirectionalAsyncPayments,
|
|
},
|
|
{
|
|
name: "wallet import account",
|
|
test: testWalletImportAccount,
|
|
},
|
|
{
|
|
name: "wallet import pubkey",
|
|
test: testWalletImportPubKey,
|
|
},
|
|
{
|
|
name: "remote signer",
|
|
test: testRemoteSigner,
|
|
},
|
|
{
|
|
name: "taproot",
|
|
test: testTaproot,
|
|
},
|
|
{
|
|
name: "taproot coop close",
|
|
test: testTaprootCoopClose,
|
|
},
|
|
{
|
|
name: "trackpayments",
|
|
test: testTrackPayments,
|
|
},
|
|
{
|
|
name: "open channel fee policy",
|
|
test: testOpenChannelUpdateFeePolicy,
|
|
},
|
|
{
|
|
name: "custom messaging",
|
|
test: testCustomMessage,
|
|
},
|
|
}
|