aboutsummaryrefslogtreecommitdiffstats
path: root/tests/AndroidManifest.xml
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2009-05-05 19:37:27 +0000
committerKenny Root <kenny@the-b.org>2009-05-05 19:37:27 +0000
commit9160ff61e2e039b7541d79474a79ec2ed7391474 (patch)
treef773ed9bdfb18ac2bae3304f716e6b1390b9c49c /tests/AndroidManifest.xml
parent71ef0dc8ec5213eaa4adf9eecc1fd0c93220a573 (diff)
downloadconnectbot-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/AndroidManifest.xml')
-rw-r--r--tests/AndroidManifest.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
new file mode 100644
index 0000000..54a2a02
--- /dev/null
+++ b/tests/AndroidManifest.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.connectbot.tests"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <!-- We add an application tag here just so that we can indicate that
+ this package needs to link against the android.test library,
+ which is needed when building test cases. -->
+ <application>
+ <uses-library android:name="android.test.runner" />
+ </application>
+ <!--
+ This declares that this application uses the instrumentation test runner targeting
+ the package of org.connectbot. To run the tests use the command:
+ "adb shell am instrument -w org.connectbot.tests/android.test.InstrumentationTestRunner"
+ -->
+ <instrumentation android:name="android.test.InstrumentationTestRunner"
+ android:targetPackage="org.connectbot"
+ android:label="Tests for HostListActivity"/>
+</manifest>