File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
src/test/java/com/microsoft/graph Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1111public class IDriveItemRequestBuilderTests {
1212
1313 @ Test
14- public void testGetItemWithPath () throws Exception {
15- final Method getItemWithPath = IDriveItemRequestBuilder .class .getDeclaredMethod ("getItemWithPath " , String .class );
16- assertNotNull (getItemWithPath );
17- assertEquals (IDriveItemRequestBuilder .class , getItemWithPath .getReturnType ());
14+ public void testitemWithPath () throws Exception {
15+ final Method itemWithPath = IDriveItemRequestBuilder .class .getDeclaredMethod ("itemWithPath " , String .class );
16+ assertNotNull (itemWithPath );
17+ assertEquals (IDriveItemRequestBuilder .class , itemWithPath .getReturnType ());
1818 }
1919
2020}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public class ManualExtensionsTests {
1313
1414 @ Test
1515 public void testChunkedUploadRequestPreserved () {
16- final String className = "com.microsoft.graph.extensions.ChunkedUploadRequest" ;
16+ final String className = "com.microsoft.graph.requests. extensions.ChunkedUploadRequest" ;
1717 try {
1818 Class .forName (className );
1919 } catch (ClassNotFoundException e ) {
@@ -23,7 +23,7 @@ public void testChunkedUploadRequestPreserved() {
2323
2424 @ Test
2525 public void testChunkedUploadResultPreserved () {
26- final String className = "com.microsoft.graph.extensions.ChunkedUploadResult" ;
26+ final String className = "com.microsoft.graph.requests. extensions.ChunkedUploadResult" ;
2727 try {
2828 Class .forName (className );
2929 } catch (ClassNotFoundException e ) {
Original file line number Diff line number Diff line change 33import static org .junit .Assert .assertEquals ;
44
55import org .junit .Before ;
6+ import org .junit .Ignore ;
67import org .junit .Test ;
78
89import com .google .gson .JsonObject ;
1112/**
1213 * Tests for sending custom requests using the SDK
1314 */
15+ @ Ignore
1416public class CustomRequestTests {
1517 private TestBase testBase ;
1618
You can’t perform that action at this time.
0 commit comments