uquic/internal/qtls/qtls_suite_test.go
2020-08-18 14:26:23 +07:00

25 lines
380 B
Go

package qtls
import (
"testing"
gomock "github.com/golang/mock/gomock"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestQTLS(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "qtls Suite")
}
var mockCtrl *gomock.Controller
var _ = BeforeEach(func() {
mockCtrl = gomock.NewController(GinkgoT())
})
var _ = AfterEach(func() {
mockCtrl.Finish()
})