Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 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" |
Ihab Awad | c17294c | 2014-08-04 19:23:37 -0700 | [diff] [blame] | 18 | coreApp="true" |
Tyler Gunn | 7cc70b4 | 2014-09-12 22:17:27 -0700 | [diff] [blame] | 19 | package="com.android.server.telecom.tests" |
Tyler Gunn | 8425357 | 2014-09-02 14:50:05 -0700 | [diff] [blame] | 20 | android:debuggable="true"> |
Yorke Lee | 7c65acd | 2014-06-04 11:11:03 -0700 | [diff] [blame] | 21 | |
Yorke Lee | 1cbe702 | 2015-08-31 18:22:15 -0700 | [diff] [blame] | 22 | <uses-sdk |
| 23 | android:minSdkVersion="23" |
| 24 | android:targetSdkVersion="23" /> |
| 25 | |
Ihab Awad | b63b57e | 2015-03-22 22:12:28 -0700 | [diff] [blame] | 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" /> |
Hall Liu | 9156bae | 2016-12-01 17:40:29 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
Ihab Awad | b63b57e | 2015-03-22 22:12:28 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Tyler Gunn | b1a95a7 | 2014-07-23 14:08:19 -0700 | [diff] [blame] | 34 | |
Tyler Gunn | 42ef808 | 2015-11-24 15:34:34 -0800 | [diff] [blame] | 35 | <!-- Used to access TelephonyManager APIs --> |
| 36 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 37 | |
Tyler Gunn | 8425357 | 2014-09-02 14:50:05 -0700 | [diff] [blame] | 38 | <application android:label="@string/app_name" |
| 39 | android:debuggable="true"> |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 40 | <uses-library android:name="android.test.runner" /> |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 41 | </application> |
| 42 | |
| 43 | <!-- |
| 44 | The prefered way is to use 'runtest': |
Tyler Gunn | 7cc70b4 | 2014-09-12 22:17:27 -0700 | [diff] [blame] | 45 | runtest telecom-unit |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 46 | |
| 47 | runtest is a wrapper around 'adb shell'. The low level shell command is: |
Tyler Gunn | 7cc70b4 | 2014-09-12 22:17:27 -0700 | [diff] [blame] | 48 | adb shell am instrument -w com.android.server.telecom.tests/android.test.InstrumentationTestRunner |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 49 | |
| 50 | To run a single test case: |
Santos Cordon | f78a72f | 2016-01-21 22:10:32 +0000 | [diff] [blame] | 51 | adb shell am instrument -w -e class com.android.server.telecom.tests.unit.FooUnitTest \ |
| 52 | com.android.server.telecom.tests/android.test.InstrumentationTestRunner |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 53 | --> |
Hall Liu | c8a396b | 2017-12-27 18:23:28 -0800 | [diff] [blame] | 54 | <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner" |
Ihab Awad | b63b57e | 2015-03-22 22:12:28 -0700 | [diff] [blame] | 55 | android:targetPackage="com.android.server.telecom.tests" |
| 56 | android:label="Telecomm application tests" |
Tyler Gunn | 8425357 | 2014-09-02 14:50:05 -0700 | [diff] [blame] | 57 | android:debuggable="true"/> |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 58 | </manifest> |