mirror of
https://github.com/twofas/2fas-server.git
synced 2024-12-12 12:09:56 +01:00
19 lines
269 B
Go
19 lines
269 B
Go
|
package tests
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
type IntegrationTestSuite struct {
|
||
|
suite.Suite
|
||
|
}
|
||
|
|
||
|
func (suite *IntegrationTestSuite) SetupTest() {
|
||
|
|
||
|
}
|
||
|
|
||
|
func Test_IntegrationTestSuite(t *testing.T) {
|
||
|
suite.Run(t, new(IntegrationTestSuite))
|
||
|
}
|