Skip to content

Commit

Permalink
File names refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeharikv112 committed Dec 23, 2019
1 parent 20df3a6 commit a768e9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ import androidx.test.runner.AndroidJUnitRunner
* Helps to configure environment with new App instance.
*/
class CustomInstrumentationRunner : AndroidJUnitRunner() {
override fun newApplication(cl: ClassLoader, className: String, context: Context): Application {
return super.newApplication(cl, TestMainApp::class.java.name, context)
override fun newApplication(cl: ClassLoader,
className: String,
context: Context): Application {
return super.newApplication(cl,
TestMainApp::class.java.name,
context)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import org.koin.test.inject
import java.net.HttpURLConnection

@RunWith(AndroidJUnit4::class)
class LoginActivityFragmentTest : BaseUITest(){
class LoginActivityTest : BaseUITest(){

@Rule
@JvmField
Expand Down

0 comments on commit a768e9c

Please sign in to comment.