(t *testing.T)
| 32 | var suiteHelper *cu.FunctionalSuiteHelper |
| 33 | |
| 34 | func TestControllers(t *testing.T) { |
| 35 | RegisterFailHandler(Fail) |
| 36 | |
| 37 | RunSpecsWithDefaultAndCustomReporters(t, |
| 38 | "Controller Suite", |
| 39 | []Reporter{printer.NewlineReporter{}}) |
| 40 | } |
| 41 | |
| 42 | var _ = BeforeSuite(func(done Done) { |
| 43 | logf.SetLogger(zap.New(zap.UseDevMode(true), zap.WriteTo(GinkgoWriter))) //nolint |
nothing calls this directly
no outgoing calls
no test coverage detected