(t *testing.T)
| 132 | } |
| 133 | |
| 134 | func TestInvalidConfig(t *testing.T) { |
| 135 | t.Parallel() |
| 136 | a := assertions.New(t) |
| 137 | config := InitializeWithDefaults("invalid", "invalid", struct{}{}) |
| 138 | a.So(config, should.NotBeNil) |
| 139 | } |
| 140 | |
| 141 | func TestConfigDefaults(t *testing.T) { |
| 142 | t.Parallel() |
nothing calls this directly
no test coverage detected