(t *testing.T)
| 321 | } |
| 322 | |
| 323 | func TestNewParser_WithStrictMode(t *testing.T) { |
| 324 | p := NewParser(WithStrictMode()) |
| 325 | if !p.strict { |
| 326 | t.Fatal("NewParser(WithStrictMode()) should set strict=true") |
| 327 | } |
| 328 | } |
nothing calls this directly
no test coverage detected