summary refs log tree commit diff
path: root/crypto/test/src/asn1/test/AllTests.cs
blob: 981b5a4df88037f9f53982430ec5420d2d077b52 (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
#if !LIB
using System;

using NUnit.Core;
using NUnit.Framework;

namespace Org.BouncyCastle.Asn1.Tests
{
    public class AllTests
    {
        public static void Main(string[] args)
        {
            Suite.Run(new NullListener(), NUnit.Core.TestFilter.Empty);
        }

        [Suite]
		public static TestSuite Suite
        {
            get
            {
                TestSuite suite = new TestSuite("ASN.1 tests");
			    // TODO Add these tests to RegressionTest list
			    suite.Add(new Asn1SequenceParserTest());
			    suite.Add(new OctetStringTest());
			    suite.Add(new ParseTest());
			    suite.Add(new TimeTest());
			    return suite;
            }
        }
    }
}
#endif