containerized-data-importer/pkg/controller/import_controller_ginkgo_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

16 lines
318 B
Go

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