com.facebook.testing.screenshot.ScreenshotRunner Java Examples

The following examples show how to use com.facebook.testing.screenshot.ScreenshotRunner. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ScreenshotTestRunner.java    From Leanplum-Android-SDK with Apache License 2.0 4 votes vote down vote up
@Override
public void onCreate(Bundle args) {
  ScreenshotRunner.onCreate(this, args);
  super.onCreate(args);
}
 
Example #2
Source File: ScreenshotTestRunner.java    From Leanplum-Android-SDK with Apache License 2.0 4 votes vote down vote up
@Override
public void finish(int resultCode, Bundle results) {
  ScreenshotRunner.onDestroy();
  super.finish(resultCode, results);
}
 
Example #3
Source File: IsometricTestRunner.java    From Isometric with Apache License 2.0 4 votes vote down vote up
@Override
public void onCreate(Bundle arguments) {
    ScreenshotRunner.onCreate(this, arguments);
    super.onCreate(arguments);
}
 
Example #4
Source File: IsometricTestRunner.java    From Isometric with Apache License 2.0 4 votes vote down vote up
@Override
public void finish(int resultCode, Bundle results) {
    ScreenshotRunner.onDestroy();
    super.finish(resultCode, results);
}
 
Example #5
Source File: ScreenshotTestRunner.java    From KataScreenshotAndroid with Apache License 2.0 4 votes vote down vote up
@Override public void onCreate(Bundle args) {
  ScreenshotRunner.onCreate(this, args);
  super.onCreate(args);
}
 
Example #6
Source File: ScreenshotTestRunner.java    From KataScreenshotAndroid with Apache License 2.0 4 votes vote down vote up
@Override public void finish(int resultCode, Bundle results) {
  ScreenshotRunner.onDestroy();
  super.finish(resultCode, results);
}
 
Example #7
Source File: EdXTestRunner.java    From edx-app-android with Apache License 2.0 4 votes vote down vote up
@Override
public void onCreate(Bundle args) {
    ScreenshotRunner.onCreate(this, args);
    super.onCreate(args);
}
 
Example #8
Source File: EdXTestRunner.java    From edx-app-android with Apache License 2.0 4 votes vote down vote up
@Override
public void finish(int resultCode, Bundle results) {
    ScreenshotRunner.onDestroy();
    super.finish(resultCode, results);
}
 
Example #9
Source File: TestRunner.java    From CompactCalendarView with MIT License 4 votes vote down vote up
@Override
public void onCreate(Bundle args) {
    ScreenshotRunner.onCreate(this, args);
    super.onCreate(args);
}
 
Example #10
Source File: TestRunner.java    From CompactCalendarView with MIT License 4 votes vote down vote up
@Override
public void finish(int resultCode, Bundle results) {
    ScreenshotRunner.onDestroy();
    super.finish(resultCode, results);
}