1
0
Fork 0

For #9605: TestApplication -> FenixRobolectricTestApplication.

This disambiguates it from the FirefoxTestApplication used in on-device
tests.
master
Michael Comella 2020-04-01 14:07:26 -07:00 committed by Michael Comella
parent 8df49473c0
commit efef8eaba0
2 changed files with 5 additions and 2 deletions

View File

@ -7,7 +7,10 @@ package org.mozilla.fenix.helpers
import org.mozilla.fenix.FenixApplication
import org.mozilla.fenix.components.TestComponents
class TestApplication : FenixApplication() {
/**
* An override of our application for use in Robolectric-based unit tests.
*/
class FenixRobolectricTestApplication : FenixApplication() {
override val components = TestComponents(this)

View File

@ -25,7 +25,7 @@ class FenixRobolectricTestRunner(testClass: Class<*>) : RobolectricTestRunner(te
override fun buildGlobalConfig(): Config {
return Config.Builder()
.setApplication(TestApplication::class.java)
.setApplication(FenixRobolectricTestApplication::class.java)
.build()
}
}