add a multiplexer for the logging.ConnectionTracer

This commit is contained in:
Marten Seemann 2020-07-06 13:57:18 +07:00
parent 2f5cba0856
commit 2d4eca1dd6
6 changed files with 597 additions and 3 deletions

View file

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