summaryrefslogtreecommitdiffstats
path: root/tests/AndroidTests/src/com/android/unit_tests/ApacheHttpTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/AndroidTests/src/com/android/unit_tests/ApacheHttpTests.java')
-rw-r--r--tests/AndroidTests/src/com/android/unit_tests/ApacheHttpTests.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/AndroidTests/src/com/android/unit_tests/ApacheHttpTests.java b/tests/AndroidTests/src/com/android/unit_tests/ApacheHttpTests.java
new file mode 100644
index 0000000..cf759e0
--- /dev/null
+++ b/tests/AndroidTests/src/com/android/unit_tests/ApacheHttpTests.java
@@ -0,0 +1,13 @@
+package com.android.unit_tests;
+
+import junit.framework.TestSuite;
+
+public class ApacheHttpTests {
+ public static TestSuite suite() {
+ TestSuite suite = new TestSuite(ApacheHttpTests.class.getName());
+
+ suite.addTestSuite(TestHttpService.class);
+
+ return suite;
+ }
+}