Use gomocked CPM in the flowcontrol tests

This commit is contained in:
Lucas Clemente 2017-06-09 12:20:36 +02:00
parent 8b6a662223
commit d01f9880be
3 changed files with 42 additions and 79 deletions

View file

@ -1,6 +1,7 @@
package flowcontrol
import (
"github.com/golang/mock/gomock"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@ -11,3 +12,13 @@ func TestCrypto(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "FlowControl Suite")
}
var mockCtrl *gomock.Controller
var _ = BeforeEach(func() {
mockCtrl = gomock.NewController(GinkgoT())
})
var _ = AfterEach(func() {
mockCtrl.Finish()
})