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