import "github.com/onsi/gomega/types"
type GomegaFailWrapper struct { Fail GomegaFailHandler TWithHelper TWithHelper }
type GomegaMatcher interface { Match(actual interface{}) (success bool, err error) FailureMessage(actual interface{}) (message string) NegatedFailureMessage(actual interface{}) (message string) }
All Gomega matchers must implement the GomegaMatcher interface
For details on writing custom matchers, check out: http://onsi.github.io/gomega/#adding-your-own-matchers
A simple *testing.T interface wrapper
type TWithHelper interface {
Helper()
}
Package types is imported by 858 packages. Updated 2018-09-07. Refresh now. Tools for package owners.