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);
}
}
|