blob: 567863e31e4b8a66befcf7735b3218bc7b4166e0 [file] [log] [blame]
Santos Cordon76faae52013-12-12 18:55:50 -08001<?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 package="com.android.telecomm.tests">
19 <application android:label="@string/app_name">
20 <uses-library android:name="android.test.runner" />
21
22 <!-- Miscellaneous telecomm app-related test activities. -->
23
24 <service android:name="com.android.telecomm.testcallservice.TestCallServiceProvider">
25 <intent-filter>
26 <action android:name="android.telecomm.ICallServiceProvider" />
27 </intent-filter>
28 </service>
29
Santos Cordonbd4d3b12014-01-30 14:50:29 -080030 <service android:name="com.android.telecomm.testcallservice.DummyCallServiceSelector">
31 <intent-filter>
32 <action android:name="android.telecomm.ICallServiceSelector" />
33 </intent-filter>
34 </service>
35
Santos Cordon76faae52013-12-12 18:55:50 -080036 <activity android:name="com.android.telecomm.testcallservice.TestCallActivity"
37 android:label="@string/testCallActivityLabel">
38 <intent-filter>
39 <action android:name="android.intent.action.MAIN" />
40 <category android:name="android.intent.category.DEFAULT" />
41 <category android:name="android.intent.category.LAUNCHER" />
42 </intent-filter>
43 </activity>
44
45 <receiver android:name="com.android.telecomm.testcallservice.CallNotificationReceiver"
46 android:exported="false">
47 <intent-filter>
48 <action android:name="com.android.telecomm.testcallservice.ACTION_CALL_SERVICE_EXIT"
49 />
50 </intent-filter>
51 </receiver>
52
53 </application>
54
55 <!--
56 The prefered way is to use 'runtest':
57 runtest telecomm-unit
58
59 runtest is a wrapper around 'adb shell'. The low level shell command is:
60 adb shell am instrument -w com.android.telecomm.tests/android.test.InstrumentationTestRunner
61
62 To run a single test case:
63 adb shell am instrument -w com.android.telecomm.tests/android.test.InstrumentationTestRunner
64 -e com.android.telecomm.tests.unit.FooUnitTest
65 -->
66 <instrumentation android:name="android.test.InstrumentationTestRunner"
67 android:targetPackage="com.android.telecomm"
68 android:label="Telecomm application tests." />
69</manifest>