forked from quic-go/quic-go
16 lines
268 B
Go
16 lines
268 B
Go
package self_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
_ "github.com/lucas-clemente/quic-go/integrationtests/tools/testlog"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestSelf(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Self integration tests")
|
|
}
|