mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
fb3d2ff6fe
* Introduce `dep`, the dependency vendoring tool. Use commits from `go-ethereum@release/1.7` for most of the dependencies. * Update dependencies.
10 lines
268 B
Go
10 lines
268 B
Go
package require
|
|
|
|
// TestingT is an interface wrapper around *testing.T
|
|
type TestingT interface {
|
|
Errorf(format string, args ...interface{})
|
|
FailNow()
|
|
}
|
|
|
|
//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl -include-format-funcs
|