aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/math/ec/test/AllTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/java/org/spongycastle/math/ec/test/AllTests.java')
-rw-r--r--libraries/spongycastle/core/src/test/java/org/spongycastle/math/ec/test/AllTests.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/libraries/spongycastle/core/src/test/java/org/spongycastle/math/ec/test/AllTests.java b/libraries/spongycastle/core/src/test/java/org/spongycastle/math/ec/test/AllTests.java
deleted file mode 100644
index bab276e4c..000000000
--- a/libraries/spongycastle/core/src/test/java/org/spongycastle/math/ec/test/AllTests.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.spongycastle.math.ec.test;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-public class AllTests
-{
- public static void main (String[] args)
- throws Exception
- {
- junit.textui.TestRunner.run(suite());
- }
-
- public static Test suite()
- throws Exception
- {
- TestSuite suite = new TestSuite("EC Math tests");
-
- suite.addTest(ECPointTest.suite());
-
- return suite;
- }
-}