forked from quic-go/quic-go
move integration tests to separate package
This commit is contained in:
1
integrationtests/integration.go
Normal file
1
integrationtests/integration.go
Normal file
@@ -0,0 +1 @@
|
|||||||
|
package integrationtests
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package h2quic_test
|
package integrationtests
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
13
integrationtests/integrationtests_suite_test.go
Normal file
13
integrationtests/integrationtests_suite_test.go
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
package integrationtests
|
||||||
|
|
||||||
|
import (
|
||||||
|
. "github.com/onsi/ginkgo"
|
||||||
|
. "github.com/onsi/gomega"
|
||||||
|
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestIntegration(t *testing.T) {
|
||||||
|
RegisterFailHandler(Fail)
|
||||||
|
RunSpecs(t, "Integration Tests Suite")
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user