blob: 7023063fa377244e474fbe7e8af33f577ba5fe4a [file] [log] [blame]
Dmitri Plotnikov6bc8c0d2009-05-06 19:07:50 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Jeff Hamilton4f864362009-04-23 02:29:07 -050017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Dmitri Plotnikov6bc8c0d2009-05-06 19:07:50 -070018 package="com.android.providers.contacts2.tests"
19 android:sharedUserId="android.uid.shared">
Jeff Hamilton4f864362009-04-23 02:29:07 -050020
21 <uses-permission android:name="android.permission.READ_CONTACTS" />
22 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
23
Dmitri Plotnikov6bc8c0d2009-05-06 19:07:50 -070024 <application>
25 <uses-library android:name="android.test.runner" />
Jeff Hamilton4f864362009-04-23 02:29:07 -050026 </application>
Dmitri Plotnikov6bc8c0d2009-05-06 19:07:50 -070027
28 <!--
29 The test delcared in this instrumentation will be run along with tests declared by
30 all other applications via the command: "adb shell itr".
31 The "itr" command will find all tests declared by all applications. If you want to run just these
32 tests on their own then use the command:
33 "adb shell am instrument -w com.android.providers.contacts2.tests/android.test.InstrumentationTestRunner"
34 -->
35 <instrumentation android:name="android.test.InstrumentationTestRunner"
36 android:targetPackage="com.android.providers.contacts2"
37 android:label="Contacts2 provider tests">
38 </instrumentation>
39
Jeff Hamilton4f864362009-04-23 02:29:07 -050040</manifest>