package org.bouncycastle.openpgp.test; import org.bouncycastle.util.test.Test; import org.bouncycastle.util.test.TestResult; public class RegressionTest { public static Test[] tests = { new BcPGPDSAElGamalTest(), new BcPGPDSATest(), new BcPGPKeyRingTest(), new BcPGPPBETest(), new BcPGPRSATest() }; public static void main( String[] args) { for (int i = 0; i != tests.length; i++) { TestResult result = tests[i].perform(); if (result.getException() != null) { result.getException().printStackTrace(); } System.out.println(result); } } }