containerized-data-importer/tests/tests_suite_test.go
Lukas Bednar bb2ba122ce Add option to generate junit and polarion report (#342)
It is necessary to close a loop for QE life-cycle .

Signed-off-by: Lukas Bednar <lbednar@redhat.com>
2018-08-24 08:40:58 -07:00

17 lines
368 B
Go

package tests_test
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"kubevirt.io/containerized-data-importer/tests"
"kubevirt.io/containerized-data-importer/tests/reporters"
)
func TestTests(t *testing.T) {
RegisterFailHandler(tests.CDIFailHandler)
RunSpecsWithDefaultAndCustomReporters(t, "Tests Suite", reporters.NewReporters())
}