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