summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/tls/test/AllTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcprov/src/main/java/org/bouncycastle/crypto/tls/test/AllTests.java')
-rw-r--r--bcprov/src/main/java/org/bouncycastle/crypto/tls/test/AllTests.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/bcprov/src/main/java/org/bouncycastle/crypto/tls/test/AllTests.java b/bcprov/src/main/java/org/bouncycastle/crypto/tls/test/AllTests.java
deleted file mode 100644
index ef5b29b..0000000
--- a/bcprov/src/main/java/org/bouncycastle/crypto/tls/test/AllTests.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.bouncycastle.crypto.tls.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("TLS tests");
-
- suite.addTest(BasicTlsTest.suite());
-
- return suite;
- }
-}