(t *testing.T)
| 36 | var url string |
| 37 | |
| 38 | func TestHttp(t *testing.T) { |
| 39 | RegisterFailHandler(Fail) |
| 40 | |
| 41 | RunSpecsWithDefaultAndCustomReporters(t, |
| 42 | "API Server Suite", |
| 43 | []Reporter{printer.NewlineReporter{}}) |
| 44 | } |
| 45 | |
| 46 | var _ = BeforeSuite(func(done Done) { |
| 47 | logf.SetLogger(zap.New(zap.UseDevMode(true), zap.WriteTo(GinkgoWriter))) |
nothing calls this directly
no outgoing calls
no test coverage detected