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

using NUnit.Core;
using NUnit.Framework;

namespace Org.BouncyCastle.Math.Tests
{
    public class AllTests
    {
        public static void Main(
			string[] args)
        {
//            junit.textui.TestRunner.run(suite());
            EventListener el = new NullListener();
            suite().Run(el);
        }

        public static TestSuite suite()
        {
			TestSuite suite = new TestSuite("Math tests");

			suite.Add(new BigIntegerTest());

			return suite;
        }
    }
}