Methods Summary |
---|
public void | test_addIssuerLjavax_security_auth_x500_X500Principal01()
//Regression for HARMONY-465
X509CRLSelector obj = new X509CRLSelector();
try {
obj.addIssuer((X500Principal) null);
fail("NullPointerException expected");
} catch (NullPointerException e) {
// expected
}
|
public void | test_addIssuerName$B_3()
//Regression for HARMONY-465
X509CRLSelector obj = new X509CRLSelector();
try {
obj.addIssuerName(new byte[] { (byte) 2, (byte) 3, (byte) 4 });
fail("IOException expected");
} catch (IOException e) {
// expected
}
|
public void | test_addIssuerName$B_4()
//Regression for HARMONY-465
X509CRLSelector obj = new X509CRLSelector();
try {
obj.addIssuerName((byte[]) null);
fail("NullPointerException expected");
} catch (NullPointerException e) {
// expected
}
|
public void | test_addIssuerNameLjava_lang_String01()
//Regression for HARMONY-465
X509CRLSelector obj = new X509CRLSelector();
try {
obj.addIssuerName("234");
fail("IOException expected");
} catch (IOException e) {
// expected
}
// Regression for HARMONY-1076
try {
new X509CRLSelector().addIssuerName("w=y");
fail("IOException expected");
} catch (IOException e) {
// expected
}
|
public void | test_addIssuerNameLjava_lang_String02()
// Regression for HARMONY-736
X509CRLSelector selector = new X509CRLSelector();
// no exception for null
selector.addIssuerName((String) null);
|
public void | test_setIssuerNamesLjava_util_Collection01()
// Regression for HARMONY-737
X509CRLSelector selector = new X509CRLSelector();
selector.setIssuerNames(new TreeSet<Comparable>() {
private static final long serialVersionUID = 6009545505321092498L;
public Iterator<Comparable> iterator() {
return null;
}
});
|