mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
27 lines
505 B
Go
27 lines
505 B
Go
//go:build rpctest
|
|
// +build rpctest
|
|
|
|
package itest
|
|
|
|
import "github.com/lightningnetwork/lnd/lntemp"
|
|
|
|
// TODO(yy): remove the temp.
|
|
var allTestCasesTemp = []*lntemp.TestCase{
|
|
{
|
|
Name: "update channel status",
|
|
TestFunc: testUpdateChanStatus,
|
|
},
|
|
{
|
|
Name: "basic funding flow",
|
|
TestFunc: testBasicChannelFunding,
|
|
},
|
|
{
|
|
Name: "external channel funding",
|
|
TestFunc: testExternalFundingChanPoint,
|
|
},
|
|
{
|
|
Name: "channel backup restore",
|
|
TestFunc: testChannelBackupRestore,
|
|
},
|
|
}
|