assertFalse(jwsAlgorithmFactory.isAvailable("blahblahblah"));
for (String algo : jwsAlgorithmFactory.getSupportedAlgorithms())
{
JsonWebSignatureAlgorithm jsonWebSignatureAlgorithm = jwsAlgorithmFactory.getAlgorithm(algo);
assertNotNull(jsonWebSignatureAlgorithm.getKeyPersuasion());
assertTrue(jwsAlgorithmFactory.isAvailable(algo));
}
}