Documentation
¶
Overview ¶
Package fixturez provides a test suite framework.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type AfterSuite ¶
type AfterSuite interface { // AfterSuite describes a method invoked after completing a test suite. AfterSuite(ctx context.Context, g *gomega.WithT) }
AfterSuite describes a method invoked after completing a test suite.
type AfterTest ¶
type AfterTest interface { // AfterTest describes a method invoked after each test method in a suite. AfterTest(ctx context.Context, g *gomega.WithT) }
AfterTest describes a method invoked after each test method in a suite.
type BeforeSuite ¶
type BeforeSuite interface { // BeforeSuite describes a method invoked before starting a test suite. BeforeSuite(ctx context.Context, g *gomega.WithT) context.Context }
BeforeSuite describes a method invoked before starting a test suite.
type BeforeTest ¶
type BeforeTest interface { // BeforeTest describes a method invoked before each test method in a suite. BeforeTest(ctx context.Context, g *gomega.WithT, ctrl *gomock.Controller) context.Context }
BeforeTest describes a method invoked before each test method in a suite.
Click to show internal directories.
Click to hide internal directories.