mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 22:55:46 +03:00
Update instrumentation test runner and shot version
This commit is contained in:
parent
cb2d234b93
commit
28660ed001
2 changed files with 3 additions and 15 deletions
|
@ -24,7 +24,7 @@ buildscript {
|
|||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.16.0"
|
||||
classpath "commons-httpclient:commons-httpclient:3.1@jar" // remove after entire switch to lib v2
|
||||
classpath 'com.karumi:shot:5.5.1'
|
||||
classpath 'com.karumi:shot:5.10.3'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -30,9 +30,9 @@ import android.os.Bundle;
|
|||
import com.facebook.testing.screenshot.ScreenshotRunner;
|
||||
import com.github.tmurakami.dexopener.DexOpener;
|
||||
|
||||
import androidx.test.runner.AndroidJUnitRunner;
|
||||
import com.karumi.shot.ShotTestRunner;
|
||||
|
||||
public class ScreenshotTestRunner extends AndroidJUnitRunner {
|
||||
public class ScreenshotTestRunner extends ShotTestRunner {
|
||||
|
||||
@Override
|
||||
public Application newApplication(ClassLoader cl, String className, Context context)
|
||||
|
@ -48,16 +48,4 @@ public class ScreenshotTestRunner extends AndroidJUnitRunner {
|
|||
|
||||
return super.newApplication(cl, className, context);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle args) {
|
||||
super.onCreate(args);
|
||||
ScreenshotRunner.onCreate(this, args);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void finish(int resultCode, Bundle results) {
|
||||
ScreenshotRunner.onDestroy();
|
||||
super.finish(resultCode, results);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue