aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/j2me/java/math/test/RegressionTest.java
blob: 79d8b590c66cf160cb6b62dd7f9128092b815f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package java.math.test;

import org.spongycastle.util.test.Test;
import org.spongycastle.util.test.TestResult;

public class RegressionTest
{
    public static Test[]    tests = {
        new BigIntegerTest()
    };

    public static void main(
        String[]    args)
    {
        for (int i = 0; i != tests.length; i++)
        {
            TestResult  result = tests[i].perform();
            System.out.println(result);
        }
    }
}