Consitently switch to stretchr/testify

We were using stretchr/testify and test-go/testify inconsitently and
sometimes mixed in the same tests. This can cause very strange issue,
e.g when using things like mock.MatchedBy().

This moves all our code to stretchr/testify, which seems to be far
more active and maintained then test-go/testify.
This commit is contained in:
Ralf Haferkamp
2023-06-29 13:44:49 +02:00
committed by Ralf Haferkamp
parent cad866808e
commit c9a9fddef1
36 changed files with 19 additions and 3390 deletions
-16
View File
@@ -1,16 +0,0 @@
package require
// 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=require -template=require_forward.go.tmpl