mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-17 11:55:30 +01:00
27 lines
353 B
Go
27 lines
353 B
Go
package tests
|
|
|
|
import (
|
|
"github.com/stretchr/testify/suite"
|
|
"testing"
|
|
)
|
|
|
|
type CreateUserTestSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (CreateUserTestSuite) SetupSuite() {
|
|
|
|
}
|
|
|
|
func (CreateUserTestSuite) TearDownSuite() {
|
|
|
|
}
|
|
|
|
func (CreateUserTestSuite) TestCreate() {
|
|
|
|
}
|
|
|
|
func TestCreateUserTestSuite(t *testing.T) {
|
|
suite.Run(t, new(CreateUserTestSuite))
|
|
}
|