Searched defs:tE (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DExemptionMechanismExceptionTest.java43 static String createErr(Exception tE, Exception eE) { argument
44 return "ExemptionMechanismException: ".concat(tE.toString()).concat(
53 ExemptionMechanismException tE = new ExemptionMechanismException();
54 assertNull("getMessage() must return null.", tE.getMessage());
55 assertNull("getCause() must return null", tE.getCause());
57 throw tE;
59 assertTrue(createErr(tE, e), tE.equals(e));
69 ExemptionMechanismException tE;
71 tE
[all...]

Completed in 27 milliseconds