summaryrefslogtreecommitdiffstats
path: root/tests/TtsTests/AndroidManifest.xml
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2011-12-06 16:40:03 +0000
committerNarayan Kamath <narayan@google.com>2012-01-09 13:38:55 +0000
commitc60aad2a8ab519a9f9ac03f4f9f929ded7ba2db5 (patch)
tree0e6498b4164abed862acc6cc14788a7d2b60a9a9 /tests/TtsTests/AndroidManifest.xml
parent9a03482c66b2f5c30c7fde38216239a1f233df02 (diff)
downloadframeworks_base-c60aad2a8ab519a9f9ac03f4f9f929ded7ba2db5.zip
frameworks_base-c60aad2a8ab519a9f9ac03f4f9f929ded7ba2db5.tar.gz
frameworks_base-c60aad2a8ab519a9f9ac03f4f9f929ded7ba2db5.tar.bz2
Write unit tests for android.speech.tts.
Change-Id: Ie5b3b4cdd13be2babee9a44bae00da179b372d12
Diffstat (limited to 'tests/TtsTests/AndroidManifest.xml')
-rw-r--r--tests/TtsTests/AndroidManifest.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/TtsTests/AndroidManifest.xml b/tests/TtsTests/AndroidManifest.xml
new file mode 100644
index 0000000..b6d5111
--- /dev/null
+++ b/tests/TtsTests/AndroidManifest.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+Copyright (C) 2011 The Android Open Source Project
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.speech.tts">
+ <application>
+ <uses-library android:name="android.test.runner" />
+
+
+ <service android:name=".MockableTextToSpeechService"
+ android:label="Mockable Text-to-speech Service">
+ <intent-filter>
+ <action android:name="android.intent.action.TTS_SERVICE" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </service>
+
+ <activity android:name=".MockableCheckVoiceData"
+ android:theme="@android:style/Theme.NoDisplay">
+ <intent-filter>
+ <action android:name="android.speech.tts.engine.CHECK_TTS_DATA" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+ </application>
+
+ <instrumentation android:name="android.test.InstrumentationTestRunner"
+ android:targetPackage="com.android.speech.tts"
+ android:label="Tests for android.speech.tts" />
+</manifest>