uquic/fuzzing/internal/helper/helper_suite_test.go
Marten Seemann 9a8e39327b implement a function to export a corpus file
The file name of that file is calculated to be the SHA1 sum of the contents.
2020-08-25 15:06:00 +07:00

13 lines
186 B
Go

package helper
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestHelper(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Helper Suite")
}