Mock FlowControlManager using gomock

This commit is contained in:
Lucas Clemente 2017-06-08 15:55:08 +02:00
parent 94843e1919
commit eeb2d8d821
9 changed files with 325 additions and 228 deletions

View file

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