Home | History | Annotate | Download | only in cert

Lines Matching refs:tE

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