summaryrefslogtreecommitdiff
path: root/vendor/github.com/stretchr/testify/require/requirements.go
diff options
context:
space:
mode:
authorAlex Flint <[email protected]>2018-12-27 10:54:34 -0800
committerGitHub <[email protected]>2018-12-27 10:54:34 -0800
commitf40417ef119019b1c94b79f3f18b7f66b9fb6bce (patch)
treee5d42fc615df642f566bb087b69e6ee288381873 /vendor/github.com/stretchr/testify/require/requirements.go
parentfb7d95b61ba8d5860c76afb69243586dff37ae85 (diff)
parente85cc7a2e22c960a656bed477f00d86a9a2c72ca (diff)
Merge pull request #70 from alexflint/create-go-modv1.0.0
Migrate from Godep to go.mod
Diffstat (limited to 'vendor/github.com/stretchr/testify/require/requirements.go')
-rw-r--r--vendor/github.com/stretchr/testify/require/requirements.go22
1 files changed, 21 insertions, 1 deletions
diff --git a/vendor/github.com/stretchr/testify/require/requirements.go b/vendor/github.com/stretchr/testify/require/requirements.go
index 4114756..690583a 100644
--- a/vendor/github.com/stretchr/testify/require/requirements.go
+++ b/vendor/github.com/stretchr/testify/require/requirements.go
@@ -6,4 +6,24 @@ type TestingT interface {
FailNow()
}
-//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl
+type tHelper interface {
+ Helper()
+}
+
+// ComparisonAssertionFunc is a common function prototype when comparing two values. Can be useful
+// for table driven tests.
+type ComparisonAssertionFunc func(TestingT, interface{}, interface{}, ...interface{})
+
+// ValueAssertionFunc is a common function prototype when validating a single value. Can be useful
+// for table driven tests.
+type ValueAssertionFunc func(TestingT, interface{}, ...interface{})
+
+// BoolAssertionFunc is a common function prototype when validating a bool value. Can be useful
+// for table driven tests.
+type BoolAssertionFunc func(TestingT, bool, ...interface{})
+
+// ValuesAssertionFunc is a common function prototype when validating an error value. Can be useful
+// for table driven tests.
+type ErrorAssertionFunc func(TestingT, error, ...interface{})
+
+//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl -include-format-funcs