type Expectation struct {
// contains filtered or unexported fields
}
func (e *Expectation) NotToBeNil()
func (e *Expectation) NotToContain(expected interface{})
func (e *Expectation) NotToEqual(expected interface{})
func (e *Expectation) NotToPanic()
func (e *Expectation) ToBeFalse()
func (e *Expectation) ToBeNil()
func (e *Expectation) ToBeTemporally(matcher TemporalMatcher, compareTo interface{})
func (e *Expectation) ToBeTrue()
func (e *Expectation) ToContain(expected interface{})
func (e *Expectation) ToEqual(expected interface{})
func (e *Expectation) ToMatchError(expected interface{})
func (e *Expectation) ToMatchInAnyOrder(expected interface{})
func (e *Expectation) ToSucceed()
type Expecter struct {
// contains filtered or unexported fields
}
func NewExpecter(t *testing.T) *Expecter
func (a *Expecter) Expect(actual interface{}) *Expectation
type TemporalMatcher byte
const ( Before TemporalMatcher = iota BeforeOrSameTime After AfterOrSameTime )