aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/org/connectbot/HostListActivityTest.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/src/org/connectbot/HostListActivityTest.java b/tests/src/org/connectbot/HostListActivityTest.java
new file mode 100644
index 0000000..b6ece44
--- /dev/null
+++ b/tests/src/org/connectbot/HostListActivityTest.java
@@ -0,0 +1,21 @@
+package org.connectbot;
+
+import android.test.ActivityInstrumentationTestCase;
+
+/**
+ * This is a simple framework for a test of an Application. See
+ * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on
+ * how to write and extend Application tests.
+ * <p/>
+ * To run this test, you can type:
+ * adb shell am instrument -w \
+ * -e class org.connectbot.HostListActivityTest \
+ * org.connectbot.tests/android.test.InstrumentationTestRunner
+ */
+public class HostListActivityTest extends ActivityInstrumentationTestCase<HostListActivity> {
+
+ public HostListActivityTest() {
+ super("org.connectbot", HostListActivity.class);
+ }
+
+}