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

Unified Diff: webrtc/sdk/android/instrumentationtests/AndroidManifest.xml

Issue 2627043002: Update Android instrumentation 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/sdk/android/instrumentationtests/AndroidManifest.xml
diff --git a/webrtc/sdk/android/instrumentationtests/AndroidManifest.xml b/webrtc/sdk/android/instrumentationtests/AndroidManifest.xml
index 90f0aec1ed84d07964cdad2e9221d6b8f68efe81..27a9389d1becf454696840843fcb989da3d8a622 100644
--- a/webrtc/sdk/android/instrumentationtests/AndroidManifest.xml
+++ b/webrtc/sdk/android/instrumentationtests/AndroidManifest.xml
@@ -1,8 +1,16 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.webrtc.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.webrtc">
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
@@ -16,14 +24,13 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
+ <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
- <instrumentation
- android:name="android.test.InstrumentationTestRunner"
- android:targetPackage="org.webrtc.test" />
-
- <application
- android:label="AndroidPeerconnectionTests" >
+ <application>
<uses-library android:name="android.test.runner" />
</application>
+ <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
+ android:targetPackage="org.webrtc"
+ android:label="Tests for WebRTC Android SDK"/>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698