aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/pqc/math/ntru/polynomial/test/AllTests.java
blob: ce9c6d60da8cb36acd018d3a2f61ec6876972ffb (plain)
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
package org.spongycastle.pqc.math.ntru.polynomial.test;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class AllTests
    extends TestCase
{
    public static void main (String[] args)
    {
        junit.textui.TestRunner.run(suite());
    }
    
    public static Test suite()
    {
        TestSuite suite = new TestSuite("NTRU Polynomial Tests");
        
        suite.addTestSuite(BigDecimalPolynomialTest.class);
        suite.addTestSuite(BigIntPolynomialTest.class);
        suite.addTestSuite(IntegerPolynomialTest.class);
        suite.addTestSuite(LongPolynomial2Test.class);
        suite.addTestSuite(LongPolynomial5Test.class);
        suite.addTestSuite(ProductFormPolynomialTest.class);
        suite.addTestSuite(SparseTernaryPolynomialTest.class);

        return suite;
    }
}