21 lines
317 B
Go
21 lines
317 B
Go
package suites
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type LDAPSuite struct {
|
|
*SeleniumSuite
|
|
}
|
|
|
|
func NewLDAPSuite() *LDAPSuite {
|
|
return &LDAPSuite{SeleniumSuite: new(SeleniumSuite)}
|
|
}
|
|
|
|
func TestLDAPSuite(t *testing.T) {
|
|
suite.Run(t, NewOneFactorSuite())
|
|
suite.Run(t, NewTwoFactorSuite())
|
|
}
|