mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-17 03:45:53 +01:00
27 lines
339 B
Go
27 lines
339 B
Go
package tests
|
|
|
|
import (
|
|
"github.com/stretchr/testify/suite"
|
|
"testing"
|
|
)
|
|
|
|
type UserAuthTestSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (UserAuthTestSuite) SetupSuite() {
|
|
|
|
}
|
|
|
|
func (UserAuthTestSuite) TearDownSuite() {
|
|
|
|
}
|
|
|
|
func (UserAuthTestSuite) TestAuth() {
|
|
|
|
}
|
|
|
|
func TestUserAuthTestSuite(t *testing.T) {
|
|
suite.Run(t, new(UserAuthTestSuite))
|
|
}
|