mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-04 05:25:35 +01:00
28 lines
400 B
Go
28 lines
400 B
Go
package integration_tests
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type InternalPaymentTestSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (InternalPaymentTestSuite) SetupSuite() {
|
|
|
|
}
|
|
|
|
func (InternalPaymentTestSuite) TearDownSuite() {
|
|
|
|
}
|
|
|
|
func (InternalPaymentTestSuite) TestAddInvoice() {
|
|
|
|
}
|
|
|
|
func TestInternalPaymentTestSuite(t *testing.T) {
|
|
suite.Run(t, new(InternalPaymentTestSuite))
|
|
}
|