1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
/* InvalidEEnotBeforeDateTest2.java
Copyright (C) 2003 Free Software Foundation, Inc.
Distributed under the GPL. See the file `COPYING' */
// Tags: JDK1.4
// Uses: BaseInvalidTest
// Files: data/certs/InvalidEEnotBeforeDateTest2EE.crt data/certs/GoodCACert.crt data/crls/GoodCACRL.crl
package gnu.testlet.java.security.cert.pkix.pkits;
public class InvalidEEnotBeforeDateTest2 extends BaseInvalidTest
{
public InvalidEEnotBeforeDateTest2()
{
super(new String[] { "data/certs/InvalidEEnotBeforeDateTest2EE.crt",
"data/certs/GoodCACert.crt" },
new String[] { "data/crls/GoodCACRL.crl" });
}
}
|