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