summary refs log tree commit diff
path: root/crypto/test/src/math/test/AllTests.cs
blob: 40cfe377454ba68a8bdfd72c334ae1a1680cb117 (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
using System;

using NUnit.Core;
using NUnit.Framework;

namespace Org.BouncyCastle.Math.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("Math tests");
                suite.Add(new BigIntegerTest());
                return suite;
            }
        }
    }
}