mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
21 lines
333 B
Go
21 lines
333 B
Go
|
package suites
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
)
|
||
|
|
||
|
type DockerSuite struct {
|
||
|
*SeleniumSuite
|
||
|
}
|
||
|
|
||
|
func NewDockerSuite() *DockerSuite {
|
||
|
return &DockerSuite{SeleniumSuite: new(SeleniumSuite)}
|
||
|
}
|
||
|
|
||
|
func TestDockerSuite(t *testing.T) {
|
||
|
suite.Run(t, NewOneFactorScenario())
|
||
|
suite.Run(t, NewTwoFactorScenario())
|
||
|
}
|