From c15a005ca84937195e2ddab15c812074aca098ec Mon Sep 17 00:00:00 2001 From: Michael Comella Date: Wed, 1 Apr 2020 17:48:34 -0700 Subject: [PATCH] No issue: remove unused FirefoxTestRunner. It would be used for on device tests but it doesn't seem to hooked up currently. --- .../org/mozilla/fenix/FirefoxTestApplication.kt | 7 ------- .../java/org/mozilla/fenix/FirefoxTestRunner.kt | 16 ---------------- 2 files changed, 23 deletions(-) delete mode 100644 app/src/androidTest/java/org/mozilla/fenix/FirefoxTestApplication.kt delete mode 100644 app/src/androidTest/java/org/mozilla/fenix/FirefoxTestRunner.kt 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) - } -}