run integration tests with the quic_server with all supported versions

This commit is contained in:
Marten Seemann
2017-09-11 15:55:39 +02:00
parent 71f7ab1326
commit 99f4a923cd
2 changed files with 176 additions and 160 deletions

View File

@@ -2,6 +2,7 @@ package gquic_test
import (
"fmt"
mrand "math/rand"
"path/filepath"
"runtime"
@@ -24,6 +25,10 @@ func TestIntegration(t *testing.T) {
RunSpecs(t, "GQuic Tests Suite")
}
var _ = BeforeSuite(func() {
mrand.Seed(GinkgoRandomSeed())
})
var _ = JustBeforeEach(func() {
testserver.StartQuicServer(nil)
})