forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManualExtensionsTests.java
More file actions
33 lines (27 loc) · 924 Bytes
/
Copy pathManualExtensionsTests.java
File metadata and controls
33 lines (27 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.microsoft.graph.extensions;
import static org.junit.Assert.*;
import java.util.logging.Logger;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class ManualExtensionsTests {
@Test
public void testChunkedUploadRequestPreserved() {
final String className = "com.microsoft.graph.requests.extensions.ChunkedUploadRequest";
try {
Class.forName(className);
} catch (ClassNotFoundException e) {
Assert.fail("Extension [" + className + "] not found.");
}
}
@Test
public void testChunkedUploadResultPreserved() {
final String className = "com.microsoft.graph.requests.extensions.ChunkedUploadResult";
try {
Class.forName(className);
} catch (ClassNotFoundException e) {
Assert.fail("Extension [" + className + "] not found.");
}
}
}