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/i18n/test/AllTests.java')
-rw-r--r--core/src/test/java/org/bouncycastle/i18n/test/AllTests.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/core/src/test/java/org/bouncycastle/i18n/test/AllTests.java b/core/src/test/java/org/bouncycastle/i18n/test/AllTests.java
deleted file mode 100644
index ee490e1d..00000000
--- a/core/src/test/java/org/bouncycastle/i18n/test/AllTests.java
+++ /dev/null
@@ -1,28 +0,0 @@
-
-package org.bouncycastle.i18n.test;
-
-import org.bouncycastle.i18n.filter.test.HTMLFilterTest;
-import org.bouncycastle.i18n.filter.test.SQLFilterTest;
-
-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("i18n tests");
- suite.addTestSuite(LocalizedMessageTest.class);
- suite.addTestSuite(HTMLFilterTest.class);
- suite.addTestSuite(SQLFilterTest.class);
- return suite;
- }
-
-}