aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/pqc/math/ntru/polynomial/test/AllTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/java/org/spongycastle/pqc/math/ntru/polynomial/test/AllTests.java')
-rw-r--r--libraries/spongycastle/core/src/test/java/org/spongycastle/pqc/math/ntru/polynomial/test/AllTests.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/libraries/spongycastle/core/src/test/java/org/spongycastle/pqc/math/ntru/polynomial/test/AllTests.java b/libraries/spongycastle/core/src/test/java/org/spongycastle/pqc/math/ntru/polynomial/test/AllTests.java
deleted file mode 100644
index ce9c6d60d..000000000
--- a/libraries/spongycastle/core/src/test/java/org/spongycastle/pqc/math/ntru/polynomial/test/AllTests.java
+++ /dev/null
@@ -1,29 +0,0 @@
-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;
- }
-}