Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/java/org/bouncycastle/pqc/math/ntru/polynomial/test/AllTests.java')
-rw-r--r--core/src/test/java/org/bouncycastle/pqc/math/ntru/polynomial/test/AllTests.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/core/src/test/java/org/bouncycastle/pqc/math/ntru/polynomial/test/AllTests.java b/core/src/test/java/org/bouncycastle/pqc/math/ntru/polynomial/test/AllTests.java
deleted file mode 100644
index 296a66ed..00000000
--- a/core/src/test/java/org/bouncycastle/pqc/math/ntru/polynomial/test/AllTests.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package org.bouncycastle.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;
- }
-}