32 lines
500 B
Go
32 lines
500 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type MySQLSuite struct {
|
|
*RodSuite
|
|
}
|
|
|
|
func NewMySQLSuite() *MySQLSuite {
|
|
return &MySQLSuite{RodSuite: new(RodSuite)}
|
|
}
|
|
|
|
func (s *MySQLSuite) Test1FAScenario() {
|
|
suite.Run(s.T(), New1FAScenario())
|
|
}
|
|
|
|
func (s *MySQLSuite) Test2FAScenario() {
|
|
suite.Run(s.T(), New2FAScenario())
|
|
}
|
|
|
|
func TestMySQLSuite(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("skipping suite test in short mode")
|
|
}
|
|
|
|
suite.Run(t, NewMySQLSuite())
|
|
}
|