(t *testing.T)
| 275 | } |
| 276 | |
| 277 | func TestValidateEmptyAuthInfo(t *testing.T) { |
| 278 | config := clientcmdapi.NewConfig() |
| 279 | config.AuthInfos["error"] = &clientcmdapi.AuthInfo{} |
| 280 | test := configValidationTest{ |
| 281 | config: config, |
| 282 | } |
| 283 | |
| 284 | test.testAuthInfo("error", t) |
| 285 | test.testConfig(t) |
| 286 | } |
| 287 | |
| 288 | func TestValidateCertFilesNotFoundAuthInfo(t *testing.T) { |
| 289 | config := clientcmdapi.NewConfig() |
nothing calls this directly
no test coverage detected