Search in sources :

Example 1 with IBaseClient

use of com.microsoft.graph.core.IBaseClient in project msgraph-sdk-java by microsoftgraph.

the class BaseCollectionPageTests method setUp.

@Before
public void setUp() throws Exception {
    list = new ArrayList<String>();
    list.add("Object1");
    list.add("Object2");
    list.add("Object3");
    IBaseClient mBaseClient = new MockBaseClient();
    mRequestBuilder = new MockRequestBuilder(mBaseClient, requestUrl);
    baseCollectionPage = new BaseCollectionPage<String, IRequestBuilder>(list, mRequestBuilder) {
    };
}
Also used : MockBaseClient(com.microsoft.graph.core.MockBaseClient) IBaseClient(com.microsoft.graph.core.IBaseClient) Before(org.junit.Before)

Aggregations

IBaseClient (com.microsoft.graph.core.IBaseClient)1 MockBaseClient (com.microsoft.graph.core.MockBaseClient)1 Before (org.junit.Before)1