We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c07a3e commit e258b36Copy full SHA for e258b36
as2-lib/src/test/java/com/helger/as2lib/crypto/BCCryptoHelperTest.java
@@ -94,9 +94,10 @@ public void testCreateKeyStores () throws GeneralSecurityException
94
// Ensure each keystore type can be created
95
final BCCryptoHelper x = new BCCryptoHelper ();
96
for (final EKeyStoreType e : EKeyStoreType.values ())
97
- {
98
- assertNotNull (x.createNewKeyStore (e));
99
- }
+ if (e.isKeyStorePathRequired ())
+ {
+ assertNotNull (x.createNewKeyStore (e));
100
+ }
101
}
102
103
@Test
0 commit comments