summary refs log tree commit diff
path: root/crypto/test/src/openpgp/test/RegressionTest.cs
blob: a6a7edf5fd7a54a071ba9810d3134435fc9f2d51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;

using Org.BouncyCastle.Utilities.Test;

namespace Org.BouncyCastle.Bcpg.OpenPgp.Tests
{
    public class RegressionTest
    {
        public static ITest[] tests =
        {
            new ArmoredInputStreamTest(),
            new IgnoreMarkerPacketInCertificatesTest(),
            new PgpArmoredTest(),
            new PgpClearSignedSignatureTest(),
            new PgpCompressionTest(),
            new PgpDsaElGamalTest(),
            new PgpDsaTest(),
            new PgpECDHTest(),
            new PgpECDsaTest(),
            new PgpECMessageTest(),
            new PgpFeaturesTest(),
            new PgpKeyRingTest(),
            new PgpMarkerTest(),
            new PgpNoPrivateKeyTest(),
            new PgpPacketTest(),
            new PgpParsingTest(),
            new PgpPbeTest(),
            new PgpRsaTest(),
            new PgpSignatureInvalidVersionIgnoredTest(),
            new PgpSignatureTest(),
        };

        public static void Main(string[] args)
        {
            foreach (ITest test in tests)
            {
                SimpleTest.RunTest(test);
            }
        }
    }
}