Home | History | Annotate | Download | only in cert

Lines Matching defs:cp1

61             CertPath cp1 = new MyCertPath(testEncoding);
62 assertEquals("MyEncoding", cp1.getType());
63 assertTrue(Arrays.equals(testEncoding, cp1.getEncoded()));
69 CertPath cp1 = new MyCertPath(null);
80 CertPath cp1 = new MyCertPath(testEncoding);
84 assertTrue(cp1.hashCode() == cp2.hashCode());
85 assertTrue(cp1.hashCode() != cp3.hashCode());
93 CertPath cp1 = new MyCertPath(testEncoding);
95 assertTrue((cp1.hashCode() == cp2.hashCode()) && cp1.equals(cp2));
111 CertPath cp1 = new MyCertPath(testEncoding);
112 assertTrue(cp1.equals(cp1));
121 CertPath cp1 = new MyCertPath(testEncoding);
123 assertTrue(cp1.equals(cp2) && cp2.equals(cp1));
131 CertPath cp1 = new MyCertPath(testEncoding);
132 assertFalse(cp1.equals(null));
141 CertPath cp1 = new MyCertPath(testEncoding);
142 assertFalse(cp1.equals("MyEncoding"));
151 CertPath cp1 = new MyCertPath(testEncoding);
152 assertNotNull(cp1.toString());
165 CertPath cp1 = new MyCertPath(testEncoding);
166 cp1.getCertificates();
175 CertPath cp1 = new MyCertPath(testEncoding);
176 cp1.getEncoded();
185 CertPath cp1 = new MyCertPath(testEncoding);
186 cp1.getEncoded("MyEncoding");
193 CertPath cp1 = new MyCertPath(testEncoding);
194 cp1.getEncodings();
202 MyCertPath cp1 = new MyCertPath(testEncoding);
203 Object obj = cp1.writeReplace();