Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Assertions ¶
type Assertions interface { Succeed(messages ...string) Assertions Fail(errorMessages ...string) Assertions ContainLines(count int) Assertions ContainLine(index int, text string) Assertions MatchLine(index int, template string) Assertions EqualLine(index int, text string) Assertions }
type IntegrationTest ¶
type IntegrationTest interface { RequireDriver(driverName string) SkipDriver(driverName string) SkipDrivers(driverNames ...string) ForceDriver(driverName string) Run(description string, action func()) Cmd(commandLine string) IntegrationTest Machine(commandLine string) IntegrationTest DriverName() string Should() Assertions TearDown() }
func NewTest ¶
func NewTest(t *testing.T) IntegrationTest
Click to show internal directories.
Click to hide internal directories.