Test for SSLHandshakeException(String)
constructor Assertion:
constructs SSLHandshakeException with detail message msg. Parameter
msg
is not null.
SSLHandshakeException sslE;
for (int i = 0; i < msgs.length; i++) {
sslE = new SSLHandshakeException(msgs[i]);
assertEquals("getMessage() must return: ".concat(msgs[i]), sslE.getMessage(), msgs[i]);
assertNull("getCause() must return null", sslE.getCause());
}