Home | History | Annotate | Download | only in cert

Lines Matching refs:tE

49         CertificateParsingException tE = new CertificateParsingException();
50 assertNull("getMessage() must return null.", tE.getMessage());
51 assertNull("getCause() must return null", tE.getCause());
60 CertificateParsingException tE;
62 tE = new CertificateParsingException(msgs[i]);
63 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
65 assertNull("getCause() must return null", tE.getCause());
76 CertificateParsingException tE = new CertificateParsingException(msg);
77 assertNull("getMessage() must return null.", tE.getMessage());
78 assertNull("getCause() must return null", tE.getCause());