immucore/internal/utils/suite_test.go

14 lines
196 B
Go
Raw Permalink Normal View History

package utils_test
2023-02-02 14:12:33 +00:00
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestSuite(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Utils test Suite")
2023-02-02 14:12:33 +00:00
}