implement the HTTP/3 error codes

This commit is contained in:
Marten Seemann 2019-03-12 10:25:07 +09:00
parent a63ee3d88f
commit 1325909ab7
3 changed files with 144 additions and 0 deletions

13
http3/http3_suite_test.go Normal file
View file

@ -0,0 +1,13 @@
package http3
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestHttp3(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "HTTP/3 Suite")
}