blob: 48ac2b7148475760ed365dba5de725a2b9273fbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  | 
package suites
import (
	"testing"
	"github.com/stretchr/testify/suite"
)
type PostgresSuite struct {
	*RodSuite
}
func NewPostgresSuite() *PostgresSuite {
	return &PostgresSuite{
		RodSuite: NewRodSuite(postgresSuiteName),
	}
}
func (s *PostgresSuite) Test1FAScenario() {
	suite.Run(s.T(), New1FAScenario())
}
func (s *PostgresSuite) Test2FATOTPScenario() {
	suite.Run(s.T(), New2FATOTPScenario())
}
func TestPostgresSuite(t *testing.T) {
	if testing.Short() {
		t.Skip("skipping suite test in short mode")
	}
	suite.Run(t, NewPostgresSuite())
}
  |