Update Several Instrumentation AndroidTest files with the correct runner.

Updated the instrumentation runner for:
* FrameworksNotificationTests
* SystemUITests
* MtpDocumentsProvider

Bug: 65176822
Test: atest FrameworksNotificationTests
      atest SystemUITests
      atest MtpDocumentsProvider
Change-Id: I939d890715dce123bd77c5e352d0b01852ddd755
This commit is contained in:
Simran Basi
2017-08-31 10:54:06 -07:00
parent 743cfba7e2
commit fedab0219c
3 changed files with 4 additions and 4 deletions

View File

@@ -21,7 +21,7 @@
<option name="test-suite-tag" value="apct" />
<option name="test-tag" value="MtpDocumentsProviderTests" />
<test class="com.android.tradefed.testtype.InstrumentationTest" >
<option name="package" value="com.android.mtp" />
<option name="runner" value="android.test.InstrumentationTestRunner" />
<option name="package" value="com.android.mtp.tests" />
<option name="runner" value="com.android.mtp.TestResultInstrumentation" />
</test>
</configuration>

View File

@@ -23,6 +23,6 @@
<option name="test-tag" value="SystemUITests" />
<test class="com.android.tradefed.testtype.AndroidJUnitTest" >
<option name="package" value="com.android.systemui.tests" />
<option name="runner" value="android.support.test.runner.AndroidJUnitRunner" />
<option name="runner" value="android.testing.TestableInstrumentation" />
</test>
</configuration>

View File

@@ -23,6 +23,6 @@
<option name="test-tag" value="FrameworksNotificationTests" />
<test class="com.android.tradefed.testtype.AndroidJUnitTest" >
<option name="package" value="com.android.frameworks.tests.notification" />
<option name="runner" value="android.support.test.runner.AndroidJUnitRunner" />
<option name="runner" value="android.testing.TestableInstrumentation" />
</test>
</configuration>