mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-28 09:16:21 +01:00
27 lines
357 B
Go
27 lines
357 B
Go
package tests
|
|
|
|
import (
|
|
"github.com/stretchr/testify/suite"
|
|
"testing"
|
|
)
|
|
|
|
type AddInvoiceTestSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (AddInvoiceTestSuite) SetupSuite() {
|
|
|
|
}
|
|
|
|
func (AddInvoiceTestSuite) TearDownSuite() {
|
|
|
|
}
|
|
|
|
func (AddInvoiceTestSuite) TestAddInvoice() {
|
|
|
|
}
|
|
|
|
func TestAddInvoiceTestSuite(t *testing.T) {
|
|
suite.Run(t, new(AddInvoiceTestSuite))
|
|
}
|