This repository was archived by the owner on Sep 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
graphsdk/src/androidTest/java/com/microsoft/graph/extensions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // ------------------------------------------------------------------------------
2+ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+ // ------------------------------------------------------------------------------
4+
5+ package com .microsoft .graph .extensions ;
6+
7+ import android .test .AndroidTestCase ;
8+
9+ import java .lang .reflect .Method ;
10+
11+ /**
12+ * Created by pnied on 8/9/2016.
13+ */
14+ public class IDriveItemRequestBuilderTests extends AndroidTestCase {
15+
16+ public void testGetItemWithPath () throws Exception {
17+ final Method getItemWithPath = IDriveItemRequestBuilder .class .getDeclaredMethod ("getItemWithPath" , String .class );
18+ assertNotNull (getItemWithPath );
19+ assertEquals (IDriveItemRequestBuilder .class , getItemWithPath .getReturnType ());
20+ }
21+ }
Original file line number Diff line number Diff line change 1+ // ------------------------------------------------------------------------------
2+ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+ // ------------------------------------------------------------------------------
4+
5+ package com .microsoft .graph .extensions ;
6+
7+ import android .test .AndroidTestCase ;
8+
9+ import java .lang .reflect .Method ;
10+
11+ /**
12+ * Created by pnied on 8/9/2016.
13+ */
14+ public class IThumbnailSetRequestBuilderTests extends AndroidTestCase {
15+
16+ public void testGetThumbnailSize () throws Exception {
17+ final Method getThumbnailSize = IThumbnailSetRequestBuilder .class .getDeclaredMethod ("getThumbnailSize" , String .class );
18+ assertNotNull (getThumbnailSize );
19+ assertEquals (IThumbnailRequestBuilder .class , getThumbnailSize .getReturnType ());
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments