ExternalStorageProvider doesn't have any tests yet. 1. Convert Android.mk to Android.bp 2. Add init testcase 3. formatted by bpfmt -s -w Android.bp Fixes: 117812397 Test: atest ExternalStorageProviderTests Change-Id: I74235832f453110742de0b15cb14fac7514ecf0e
14 lines
547 B
XML
14 lines
547 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.externalstorage.tests">
|
|
|
|
<application android:label="ExternalStorageProvider Tests">
|
|
<uses-library android:name="android.test.runner" />
|
|
</application>
|
|
|
|
<instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
|
|
android:targetPackage="com.android.externalstorage"
|
|
android:label="ExternalStorageProvider Tests" />
|
|
</manifest>
|
|
|