mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
25 lines
380 B
Go
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()
|
|
})
|