Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: webrtc/examples/androidtests/AndroidManifest.xml

Issue 2621253002: Update AppRTCMobile tests to use JUnit4. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/examples/androidtests/AndroidManifest.xml
diff --git a/webrtc/examples/androidtests/AndroidManifest.xml b/webrtc/examples/androidtests/AndroidManifest.xml
index f99f477a67590b5808ccabdeb3db8ff608f4828c..30aeee0305e3c4034224cda0a67f0d13443a7797 100644
--- a/webrtc/examples/androidtests/AndroidManifest.xml
+++ b/webrtc/examples/androidtests/AndroidManifest.xml
@@ -1,17 +1,26 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.appspot.apprtc.test"
- android:versionCode="1"
- android:versionName="1.0" >
+<!--
+ * Copyright 2017 The WebRTC Project Authors. All rights reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+-->
+
+<manifest
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.appspot.apprtc.test">
<uses-sdk android:minSdkVersion="13" android:targetSdkVersion="21" />
- <instrumentation
- android:name="android.test.InstrumentationTestRunner"
- android:targetPackage="org.appspot.apprtc" />
+ <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
<application>
<uses-library android:name="android.test.runner" />
</application>
-</manifest>
+ <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
+ android:targetPackage="org.appspot.apprtc"
+ android:label="Tests for AppRTCMobile"/>
+</manifest>
« no previous file with comments | « webrtc/examples/BUILD.gn ('k') | webrtc/examples/androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698