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