summary refs log tree commit diff
path: root/crypto/test/src/openpgp
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-02-25 17:23:08 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-02-25 17:23:08 +0700
commitbad19a6fb0a82ae963d86d25c59864cb5a845b65 (patch)
tree83ce71baa07c2e4cb3a1bb008d69b3189a56d4e7 /crypto/test/src/openpgp
parentTabs -> spaces (diff)
downloadBouncyCastle.NET-ed25519-bad19a6fb0a82ae963d86d25c59864cb5a845b65.tar.xz
Add new test to regression tests
Diffstat (limited to 'crypto/test/src/openpgp')
-rw-r--r--crypto/test/src/openpgp/test/RegressionTest.cs21
1 files 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);
             }
         }