> @@ -31,6 +32,11 @@ public void testCredentialTypeOfWhenValid() { > "password")), CredentialTypes.PASSWORD_CREDENTIALS); > } > > + public void testCredentialTypeOfWhenValidToken() { > + > assertEquals(CredentialTypes.credentialTypeOf(TokenCredentials.createWithToken("token")),
The `"token"` value here represents a real token ... so it could be anything. I aguess these tests check if `CredentialTypes` class supports `TokenCredentials`. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/433/files#r17382097