1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-04 08:24:28 +00:00

vendor update for unit test

This commit is contained in:
Alena Prokharchyk
2019-11-12 15:29:55 -08:00
parent e1a0e447b9
commit 3344b19b14
15 changed files with 4542 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package assert
// Assertions provides assertion methods around the
// TestingT interface.
type Assertions struct {
t TestingT
}
// New makes a new Assertions object for the specified TestingT.
func New(t TestingT) *Assertions {
return &Assertions{
t: t,
}
}
//go:generate go run ../_codegen/main.go -output-package=assert -template=assertion_forward.go.tmpl -include-format-funcs