From bad19a6fb0a82ae963d86d25c59864cb5a845b65 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Tue, 25 Feb 2014 17:23:08 +0700 Subject: Add new test to regression tests --- crypto/test/src/openpgp/test/RegressionTest.cs | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/crypto/test/src/openpgp/test/RegressionTest.cs b/crypto/test/src/openpgp/test/RegressionTest.cs index d74c5d483..e8a3685c6 100644 --- a/crypto/test/src/openpgp/test/RegressionTest.cs +++ b/crypto/test/src/openpgp/test/RegressionTest.cs @@ -7,7 +7,7 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp.Tests public class RegressionTest { public static ITest[] tests = - { + { new PgpKeyRingTest(), new PgpRsaTest(), new PgpDsaTest(), @@ -15,18 +15,19 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp.Tests new PgpPbeTest(), new PgpMarkerTest(), new PgpPacketTest(), - new PgpArmoredTest(), - new PgpSignatureTest(), - new PgpClearSignedSignatureTest(), - new PgpCompressionTest() + new PgpArmoredTest(), + new PgpSignatureTest(), + new PgpClearSignedSignatureTest(), + new PgpCompressionTest(), + new PGPNoPrivateKeyTest(), }; - public static void Main( - string[] args) + public static void Main( + string[] args) { - foreach (ITest test in tests) - { - ITestResult result = test.Perform(); + foreach (ITest test in tests) + { + ITestResult result = test.Perform(); Console.WriteLine(result); } } -- cgit 1.5.1