|
12 | 12 | */
|
13 | 13 | package com.ibm.watson.developer_cloud.conversation.v1;
|
14 | 14 |
|
15 |
| -import static org.junit.Assert.assertEquals; |
16 |
| -import static org.junit.Assert.assertNotNull; |
17 |
| -import static org.junit.Assert.assertNull; |
18 |
| -import static org.junit.Assert.assertTrue; |
19 |
| -import static org.junit.Assert.fail; |
20 |
| - |
21 |
| -import java.text.DateFormat; |
22 |
| -import java.text.SimpleDateFormat; |
23 |
| -import java.util.ArrayList; |
24 |
| -import java.util.Date; |
25 |
| -import java.util.HashMap; |
26 |
| -import java.util.List; |
27 |
| -import java.util.Map; |
28 |
| -import java.util.UUID; |
29 |
| - |
30 |
| -import com.ibm.watson.developer_cloud.conversation.v1.model.RuntimeEntity; |
31 |
| -import org.junit.Ignore; |
32 |
| -import org.junit.Test; |
33 |
| -import org.junit.runner.RunWith; |
34 |
| - |
35 | 15 | import com.ibm.watson.developer_cloud.conversation.v1.model.Context;
|
36 | 16 | import com.ibm.watson.developer_cloud.conversation.v1.model.Counterexample;
|
37 | 17 | import com.ibm.watson.developer_cloud.conversation.v1.model.CounterexampleCollection;
|
|
74 | 54 | import com.ibm.watson.developer_cloud.conversation.v1.model.MessageOptions;
|
75 | 55 | import com.ibm.watson.developer_cloud.conversation.v1.model.MessageResponse;
|
76 | 56 | import com.ibm.watson.developer_cloud.conversation.v1.model.OutputData;
|
| 57 | +import com.ibm.watson.developer_cloud.conversation.v1.model.RuntimeEntity; |
77 | 58 | import com.ibm.watson.developer_cloud.conversation.v1.model.RuntimeIntent;
|
78 | 59 | import com.ibm.watson.developer_cloud.conversation.v1.model.UpdateCounterexampleOptions;
|
79 | 60 | import com.ibm.watson.developer_cloud.conversation.v1.model.UpdateDialogNodeOptions;
|
|
87 | 68 | import com.ibm.watson.developer_cloud.service.exception.NotFoundException;
|
88 | 69 | import com.ibm.watson.developer_cloud.service.exception.UnauthorizedException;
|
89 | 70 | import com.ibm.watson.developer_cloud.util.RetryRunner;
|
90 |
| - |
91 | 71 | import jersey.repackaged.jsr166e.CompletableFuture;
|
| 72 | +import org.junit.Ignore; |
| 73 | +import org.junit.Test; |
| 74 | +import org.junit.runner.RunWith; |
| 75 | + |
| 76 | +import java.text.DateFormat; |
| 77 | +import java.text.SimpleDateFormat; |
| 78 | +import java.util.ArrayList; |
| 79 | +import java.util.Date; |
| 80 | +import java.util.HashMap; |
| 81 | +import java.util.List; |
| 82 | +import java.util.Map; |
| 83 | +import java.util.UUID; |
| 84 | + |
| 85 | +import static org.junit.Assert.assertEquals; |
| 86 | +import static org.junit.Assert.assertNotNull; |
| 87 | +import static org.junit.Assert.assertNull; |
| 88 | +import static org.junit.Assert.assertTrue; |
| 89 | +import static org.junit.Assert.fail; |
92 | 90 |
|
93 | 91 | /**
|
94 | 92 | * Integration test for the {@link Conversation}.
|
@@ -1231,7 +1229,6 @@ public void testGetWorkspace() {
|
1231 | 1229 | assertNotNull(response.getWorkspaceId());
|
1232 | 1230 | assertEquals(response.getWorkspaceId(), workspaceId);
|
1233 | 1231 | assertNotNull(response.getName());
|
1234 |
| - assertNotNull(response.getDescription()); |
1235 | 1232 | assertNotNull(response.getLanguage());
|
1236 | 1233 |
|
1237 | 1234 | Date now = new Date();
|
@@ -1273,7 +1270,6 @@ public void testListWorkspaces() {
|
1273 | 1270 |
|
1274 | 1271 | assertNotNull(wResponse);
|
1275 | 1272 | assertNotNull(wResponse.getName());
|
1276 |
| - assertNotNull(wResponse.getDescription()); |
1277 | 1273 | }
|
1278 | 1274 |
|
1279 | 1275 | /**
|
|
0 commit comments