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