diff --git a/app/src/androidTest/java/org/mozilla/fenix/FirefoxTestApplication.kt b/app/src/androidTest/java/org/mozilla/fenix/FirefoxTestApplication.kt deleted file mode 100644 index f5cbdf46b..000000000 --- a/app/src/androidTest/java/org/mozilla/fenix/FirefoxTestApplication.kt +++ /dev/null @@ -1,7 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -package org.mozilla.fenix - -class FirefoxTestApplication : HomeActivity() diff --git a/app/src/androidTest/java/org/mozilla/fenix/FirefoxTestRunner.kt b/app/src/androidTest/java/org/mozilla/fenix/FirefoxTestRunner.kt deleted file mode 100644 index 7d1717720..000000000 --- a/app/src/androidTest/java/org/mozilla/fenix/FirefoxTestRunner.kt +++ /dev/null @@ -1,16 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -package org.mozilla.fenix - -import android.app.Application -import android.content.Context -import androidx.test.runner.AndroidJUnitRunner - -class FirefoxTestRunner : AndroidJUnitRunner() { - - override fun newApplication(cl: ClassLoader?, className: String?, context: Context?): Application { - return super.newApplication(cl, FirefoxTestApplication::class.java.name, context) - } -}