forked from quic-go/quic-go
14 lines
197 B
Go
14 lines
197 B
Go
package protocol_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestProtocol(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Protocol Suite")
|
|
}
|