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

using NUnit.Core;
using NUnit.Framework;

using Org.BouncyCastle.Utilities.Test;

namespace Org.BouncyCastle.Ocsp.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("OCSP Tests");
                suite.Add(new OcspTest());
                return suite;
            }
        }
	}
}
#endif