diff options
author | Kenny Root <kenny@the-b.org> | 2009-05-05 19:37:27 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2009-05-05 19:37:27 +0000 |
commit | 9160ff61e2e039b7541d79474a79ec2ed7391474 (patch) | |
tree | f773ed9bdfb18ac2bae3304f716e6b1390b9c49c /tests/src | |
parent | 71ef0dc8ec5213eaa4adf9eecc1fd0c93220a573 (diff) | |
download | connectbot-9160ff61e2e039b7541d79474a79ec2ed7391474.tar.gz connectbot-9160ff61e2e039b7541d79474a79ec2ed7391474.tar.bz2 connectbot-9160ff61e2e039b7541d79474a79ec2ed7391474.zip |
Add in SDK 1.5 generated tests subdir
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@218 df292f66-193f-0410-a5fc-6d59da041ff2
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/connectbot/HostListActivityTest.java | 21 |
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); + } + +} |