(t *testing.T)
| 3 | import "testing" |
| 4 | |
| 5 | func TestNewOptions(t *testing.T) { |
| 6 | t.Parallel() |
| 7 | |
| 8 | o := NewOptions() |
| 9 | if o.StatusCodesParsed.Set == nil { |
| 10 | t.Fatal("StatusCodesParsed not initialized") |
| 11 | } |
| 12 | |
| 13 | if o.ExtensionsParsed.Set == nil { |
| 14 | t.Fatal("ExtensionsParsed not initialized") |
| 15 | } |
| 16 | } |
nothing calls this directly
no test coverage detected