32 lines
539 B
Go
32 lines
539 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type MySQLSuite struct {
|
|
*SeleniumSuite
|
|
}
|
|
|
|
func NewMySQLSuite() *MySQLSuite {
|
|
return &MySQLSuite{SeleniumSuite: new(SeleniumSuite)}
|
|
}
|
|
|
|
func (s *MySQLSuite) TestOneFactorScenario() {
|
|
suite.Run(s.T(), NewOneFactorScenario())
|
|
}
|
|
|
|
func (s *MySQLSuite) TestTwoFactorScenario() {
|
|
suite.Run(s.T(), NewTwoFactorScenario())
|
|
}
|
|
|
|
func TestMySQLSuite(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("skipping suite test in short mode")
|
|
}
|
|
|
|
suite.Run(t, NewMySQLSuite())
|
|
}
|