[fenix] For https://github.com/mozilla-mobile/fenix/issues/9605: TestApplication -> FenixRobolectricTestApplication.

This disambiguates it from the FirefoxTestApplication used in on-device
tests.
pull/600/head
Michael Comella 5 years ago committed by Michael Comella
parent dff3a69dc3
commit 5d2c577c64

@ -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)

@ -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()
}
}

Loading…
Cancel
Save