Example usage for android.support.v4.content AsyncTaskLoaderSpier spy

List of usage examples for android.support.v4.content AsyncTaskLoaderSpier spy

Introduction

In this page you can find the example usage for android.support.v4.content AsyncTaskLoaderSpier spy.

Prototype

public static <T extends AsyncTaskLoader> T spy(final T asyncTaskLoader, String observerFieldName) 

Source Link

Usage

From source file:br.com.cybereagle.androidtestlibrary.util.SpyUtils.java

public static <T extends AsyncTaskLoader> T spy(T asyncTaskLoader, String observerFieldName) {
    return AsyncTaskLoaderSpier.spy(asyncTaskLoader, observerFieldName);
}