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