summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/onsi/gomega/types/types.go
blob: 1c632ade2913563e00f8c0749a0d9beb52bb3b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package types

type GomegaFailHandler func(message string, callerSkip ...int)

//A simple *testing.T interface wrapper
type GomegaTestingT interface {
	Errorf(format string, args ...interface{})
}

//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
type GomegaMatcher interface {
	Match(actual interface{}) (success bool, err error)
	FailureMessage(actual interface{}) (message string)
	NegatedFailureMessage(actual interface{}) (message string)
}