(t *testing.T)
| 38 | } |
| 39 | |
| 40 | func TestSettingsDefaultProxyPort(t *testing.T) { |
| 41 | RegisterTestingT(t) |
| 42 | |
| 43 | os.Setenv("ProxyPort", "") |
| 44 | cfg := InitSettings() |
| 45 | Expect(cfg.ProxyPort).To(Equal(DefaultPort)) |
| 46 | } |
| 47 | |
| 48 | func TestSettingsDefaultListenOnHost(t *testing.T) { |
| 49 | RegisterTestingT(t) |
nothing calls this directly
no test coverage detected