Home | History | Annotate | Download | only in tests
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2013 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 
     17 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     18           coreApp="true"
     19           package="com.android.server.telecom.tests"
     20           android:debuggable="true">
     21 
     22     <uses-sdk
     23         android:minSdkVersion="23"
     24         android:targetSdkVersion="23" />
     25 
     26     <!-- TODO: Needed because we call BluetoothAdapter.getDefaultAdapter() statically, and
     27          BluetoothAdapter is a final class. -->
     28     <uses-permission android:name="android.permission.BLUETOOTH" />
     29 
     30     <!-- TODO: Needed because we call ActivityManager.getCurrentUser() statically. -->
     31     <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
     32     <uses-permission android:name="android.permission.MANAGE_USERS" />
     33 
     34     <!-- Used to access TelephonyManager APIs -->
     35     <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
     36 
     37     <application android:label="@string/app_name"
     38                  android:debuggable="true">
     39         <uses-library android:name="android.test.runner" />
     40     </application>
     41 
     42     <!--
     43         The prefered way is to use 'runtest':
     44            runtest telecom-unit
     45 
     46         runtest is a wrapper around 'adb shell'. The low level shell command is:
     47         adb shell am instrument -w com.android.server.telecom.tests/android.test.InstrumentationTestRunner
     48 
     49         To run a single test case:
     50         adb shell am instrument -w -e class com.android.server.telecom.tests.unit.FooUnitTest \
     51                                com.android.server.telecom.tests/android.test.InstrumentationTestRunner
     52     -->
     53     <instrumentation android:name="android.test.InstrumentationTestRunner"
     54             android:targetPackage="com.android.server.telecom.tests"
     55             android:label="Telecomm application tests"
     56             android:debuggable="true"/>
     57 </manifest>
     58