Java Code Examples for org.robolectric.internal.ShadowExtractor#extract()

The following examples show how to use org.robolectric.internal.ShadowExtractor#extract() . 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: FileUtilsTest.java    From twitter-kit-android with Apache License 2.0 5 votes vote down vote up
@Before
public void setUp() {
    final ShadowMimeTypeMap mimeTypeMap = (ShadowMimeTypeMap) ShadowExtractor
            .extract(MimeTypeMap.getSingleton());
    mimeTypeMap.addExtensionMimeTypMapping("jpg", "image/jpeg");
    mimeTypeMap.addExtensionMimeTypMapping("jpeg", "image/jpeg");
    mimeTypeMap.addExtensionMimeTypMapping("png", "image/png");
    this.mimeTypeMap = mimeTypeMap;
}
 
Example 2
Source File: ShadowSnackbar.java    From fyber_mobile_offers with MIT License 4 votes vote down vote up
static ShadowSnackbar shadowOf(Snackbar bar) {
    return (ShadowSnackbar) ShadowExtractor.extract(bar);
}
 
Example 3
Source File: AbstractGridItemViewAssert.java    From materialandroid with Apache License 2.0 4 votes vote down vote up
private static ShadowDrawable shadowOf(Drawable actual) {
  return (ShadowDrawable) ShadowExtractor.extract(actual);
}
 
Example 4
Source File: AbstractListItemViewAssert.java    From materialandroid with Apache License 2.0 4 votes vote down vote up
private static ShadowDrawable shadowOf(Drawable actual) {
  return (ShadowDrawable) ShadowExtractor.extract(actual);
}
 
Example 5
Source File: AbstractPasswordEditTextAssert.java    From materialandroid with Apache License 2.0 4 votes vote down vote up
public static ShadowDrawable shadowOf(Drawable actual) {
  return (ShadowDrawable) ShadowExtractor.extract(actual);
}