HomeSort by relevance Sort by last modified time
    Searched defs:eT (Results 1 - 2 of 2) sorted by null

  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
AuthenticationExceptionTest.java 166 AuthenticationException eT;
167 eT = new AuthenticationException();
168 assertNotNull("Incorrect null string", eT.toString());
170 eT = new AuthenticationException(msgs[i]);
171 assertTrue("Incorrect result string", eT.toString()
175 eT = new AuthenticationException(msgs[i], th[j]);
176 assertTrue("Incorrect result string", eT.toString().indexOf(
179 assertTrue("Incorrect result string", eT.toString()
SaslExceptionTest.java 175 SaslException eT;
176 eT = new SaslException();
177 assertNotNull("Incorrect null string", eT.toString());
179 eT = new SaslException(msgs[i]);
180 assertTrue("Incorrect result string", eT.toString()
184 eT = new SaslException(msgs[i], th[j]);
185 assertTrue("Incorrect result string", eT.toString().indexOf(
188 assertTrue("Incorrect result string", eT.toString()
201 SaslException eT;
203 eT = new SaslException()
    [all...]

Completed in 58 milliseconds