Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NilFunc ¶
func NilFunc(f *TestFramework) error
NilFn is a convenience function which simply does nothing
Types ¶
type TestFramework ¶
type TestFramework struct { TestError error // contains filtered or unexported fields }
TestFramework is used to support commonnly used test features
func NewTestFramework ¶
func NewTestFramework( setup func(*TestFramework) error, teardown func(*TestFramework) error, ) *TestFramework
NewTestFramework creates a new test framework instance for a given `setup` and `teardown` function
func (*TestFramework) Describe ¶
func (t *TestFramework) Describe(text string, body func()) bool
Describe is a convenience wrapper around the `ginkgo.Describe` function
func (*TestFramework) Setup ¶
func (t *TestFramework) Setup()
Setup is the global initialization function which runs before each test suite
func (*TestFramework) Teardown ¶
func (t *TestFramework) Teardown()
Teardown is the global deinitialization function which runs after each test suite
Click to show internal directories.
Click to hide internal directories.