use of org.apache.harmony.security.tests.support.cert.MyCertPath in project robovm by robovm.
the class CertPathTest method testGetEncodedString.
/**
* This test just calls <code>getEncoded(String)</code> method<br>
*
* @throws CertificateEncodingException
*/
public final void testGetEncodedString() throws CertificateEncodingException {
CertPath cp1 = new MyCertPath(testEncoding);
cp1.getEncoded("MyEncoding");
}
use of org.apache.harmony.security.tests.support.cert.MyCertPath in project robovm by robovm.
the class CertPathTest method testGetCertificates.
//
// the following tests just call methods
// that are abstract in <code>CertPath</code>
// (So they just like signature tests)
//
/**
* This test just calls <code>getCertificates()</code> method<br>
*/
public final void testGetCertificates() {
CertPath cp1 = new MyCertPath(testEncoding);
cp1.getCertificates();
}
Aggregations