route/vendor/github.com/lucas-clemente/quic-go/internal/handshake/handshake_suite_test.go

25 lines
384 B
Go
Raw Normal View History

2017-12-12 02:51:45 +00:00
package handshake
import (
2018-01-03 19:19:49 +00:00
"github.com/golang/mock/gomock"
2017-12-12 02:51:45 +00:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestQuicGo(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Handshake Suite")
}
2018-01-03 19:19:49 +00:00
var mockCtrl *gomock.Controller
var _ = BeforeEach(func() {
mockCtrl = gomock.NewController(GinkgoT())
})
var _ = AfterEach(func() {
mockCtrl.Finish()
})