Searched refs:msgs (Results 1 - 25 of 191) sorted by relevance

12345678

/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DUnrecoverableEntryExceptionTest.java42 static String[] msgs = { field in class:UnrecoverableEntryExceptionTest
63 for (int i = 0; i < msgs.length; i++) {
64 tE = new UnrecoverableEntryException(msgs[i]);
65 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
66 .getMessage(), msgs[i]);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
H A DCRLExceptionTest.java35 public static String[] msgs = { field in class:CRLExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CRLException dExc = new CRLException(msgs[0], cause);
45 new CRLException(msgs[1]),
47 new CRLException(msgs[1], dExc) };
H A DCertPathBuilderExceptionTest.java35 public static String[] msgs = { field in class:CertPathBuilderExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertPathBuilderException dExc = new CertPathBuilderException(msgs[0], cause);
45 new CertPathBuilderException(msgs[1]),
47 new CertPathBuilderException(msgs[1], dExc) };
H A DCertStoreExceptionTest.java35 public static String[] msgs = { field in class:CertStoreExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertStoreException dExc = new CertStoreException(msgs[0], cause);
45 new CertStoreException(msgs[1]),
47 new CertStoreException(msgs[1], dExc) };
H A DCertificateEncodingExceptionTest.java35 public static String[] msgs = { field in class:CertificateEncodingExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertificateEncodingException dExc = new CertificateEncodingException(msgs[0], cause);
45 new CertificateEncodingException(msgs[1]),
47 new CertificateEncodingException(msgs[1], dExc) };
H A DCertificateExceptionTest.java35 public static String[] msgs = { field in class:CertificateExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertificateException dExc = new CertificateException(msgs[0], cause);
45 new CertificateException(msgs[1]),
47 new CertificateException(msgs[1], dExc) };
H A DCertificateParsingExceptionTest.java35 public static String[] msgs = { field in class:CertificateParsingExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertificateParsingException dExc = new CertificateParsingException(msgs[0], cause);
45 new CertificateParsingException(msgs[1]),
47 new CertificateParsingException(msgs[1], dExc) };
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
H A DDigestExceptionTest.java35 public static String[] msgs = { field in class:DigestExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 DigestException dExc = new DigestException(msgs[0], cause);
45 new DigestException(msgs[1]),
47 new DigestException(msgs[1], dExc) };
H A DGeneralSecurityExceptionTest.java35 public static String[] msgs = { field in class:GeneralSecurityExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 GeneralSecurityException dExc = new GeneralSecurityException(msgs[0], cause);
45 new GeneralSecurityException(msgs[1]),
47 new GeneralSecurityException(msgs[1], dExc) };
H A DInvalidAlgorithmParameterExceptionTest.java35 public static String[] msgs = { field in class:InvalidAlgorithmParameterExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 InvalidAlgorithmParameterException dExc = new InvalidAlgorithmParameterException(msgs[0], cause);
45 new InvalidAlgorithmParameterException(msgs[1]),
47 new InvalidAlgorithmParameterException(msgs[1], dExc) };
H A DInvalidKeyExceptionTest.java35 public static String[] msgs = { field in class:InvalidKeyExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 InvalidKeyException dExc = new InvalidKeyException(msgs[0], cause);
45 new InvalidKeyException(msgs[1]),
47 new InvalidKeyException(msgs[1], dExc) };
H A DKeyExceptionTest.java35 public static String[] msgs = { field in class:KeyExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 KeyException dExc = new KeyException(msgs[0], cause);
45 new KeyException(msgs[1]),
47 new KeyException(msgs[1], dExc) };
H A DKeyManagementExceptionTest.java35 public static String[] msgs = { field in class:KeyManagementExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 KeyManagementException dExc = new KeyManagementException(msgs[0], cause);
45 new KeyManagementException(msgs[1]),
47 new KeyManagementException(msgs[1], dExc) };
H A DKeyStoreExceptionTest.java35 public static String[] msgs = { field in class:KeyStoreExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 KeyStoreException dExc = new KeyStoreException(msgs[0], cause);
45 new KeyStoreException(msgs[1]),
47 new KeyStoreException(msgs[1], dExc) };
H A DNoSuchAlgorithmExceptionTest.java35 public static String[] msgs = { field in class:NoSuchAlgorithmExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 NoSuchAlgorithmException dExc = new NoSuchAlgorithmException(msgs[0], cause);
45 new NoSuchAlgorithmException(msgs[1]),
47 new NoSuchAlgorithmException(msgs[1], dExc) };
H A DProviderExceptionTest.java35 public static String[] msgs = { field in class:ProviderExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 ProviderException dExc = new ProviderException(msgs[0], cause);
45 new ProviderException(msgs[1]),
47 new ProviderException(msgs[1], dExc) };
H A DSignatureExceptionTest.java35 public static String[] msgs = { field in class:SignatureExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 SignatureException dExc = new SignatureException(msgs[0], cause);
45 new SignatureException(msgs[1]),
47 new SignatureException(msgs[1], dExc) };
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/serialization/
H A DInvalidKeySpecExceptionTest.java35 public static String[] msgs = { field in class:InvalidKeySpecExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 InvalidKeySpecException dExc = new InvalidKeySpecException(msgs[0], cause);
45 new InvalidKeySpecException(msgs[1]),
47 new InvalidKeySpecException(msgs[1], dExc) };
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
H A DSSLExceptionTest.java35 public static String[] msgs = { field in class:SSLExceptionTest
42 Exception cause = new Exception(msgs[1]);
43 SSLException excSSL = new SSLException(msgs[0]);
44 return new Object[] { new SSLException(msg), new SSLException(msgs[1]),
46 new SSLException(msgs[1], cause) };
H A DSSLHandshakeExceptionTest.java35 public static String[] msgs = { field in class:SSLHandshakeExceptionTest
42 new SSLHandshakeException(msgs[0]), new SSLHandshakeException(msgs[1]) };
H A DSSLKeyExceptionTest.java35 public static String[] msgs = { field in class:SSLKeyExceptionTest
42 new SSLKeyException(msgs[0]), new SSLKeyException(msgs[1]) };
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dstack_utils_unittest.py52 msgs = []
55 msgs.append(msg)
60 self.assertTrue(msgs)
63 msgs = []
66 msgs.append(msg)
72 self.assertTrue(msgs)
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/serialization/
H A DCertificateEncodingExceptionTest.java35 public static String[] msgs = { field in class:CertificateEncodingExceptionTest
42 new CertificateEncodingException(msgs[0]),
43 new CertificateEncodingException(msgs[1]) };
H A DCertificateExceptionTest.java35 public static String[] msgs = { field in class:CertificateExceptionTest
41 new CertificateException(msgs[0]),
42 new CertificateException(msgs[1]) };
H A DCertificateParsingExceptionTest.java35 public static String[] msgs = { field in class:CertificateParsingExceptionTest
42 new CertificateParsingException(msgs[1]),
43 new CertificateParsingException(msgs[1]) };

Completed in 195 milliseconds

12345678