(t *testing.T)
| 872 | } |
| 873 | |
| 874 | func TestValidateConfig_NilConfig(t *testing.T) { |
| 875 | v := NewValidator(false) |
| 876 | result := v.ValidateConfig(nil) |
| 877 | |
| 878 | if result.Errors != 0 || result.Warnings != 0 { |
| 879 | t.Errorf("Expected no issues for nil config, got %d errors, %d warnings", result.Errors, result.Warnings) |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | func TestValidateConfig_NoScopes(t *testing.T) { |
| 884 | v := NewValidator(false) |
nothing calls this directly
no test coverage detected