mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-02 19:57:35 +03:00
13 lines
189 B
Go
13 lines
189 B
Go
package helper
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestHelper(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Helper Suite")
|
|
}
|