java.security.cert.CRL
4950515253545556
/** * Test #1 for <code>getType()</code> method<br> * Assertion: returns <code>CRL</code> type */ public final void testGetType01() { CRL crl = new MyCRL("TEST_TYPE"); assertEquals("TEST_TYPE", crl.getType()); }
5859606162636465
/** * Test #2 for <code>getType()</code> method<br> * Assertion: returns <code>CRL</code> type */ public final void testGetType02() { CRL crl = new MyCRL(null); assertNull(crl.getType()); }
7273747576777879
/** * Test for <code>toString()</code> method */ public final void testToString() { CRL crl = new MyCRL("TEST_TYPE"); crl.toString(); }
8081828384858687
/** * Test for <code>isRevoked()</code> method */ public final void testIsRevoked() { CRL crl = new MyCRL("TEST_TYPE"); crl.isRevoked(null); }
4849505152535455
5758596061626364
7172737475767778
7980818283848586