File tree Expand file tree Collapse file tree 6 files changed +16
-3
lines changed
src/test/java/com/ibm/watson/developer_cloud
conversation/v1_experimental Expand file tree Collapse file tree 6 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public class AlchemyVisionIT extends WatsonServiceTest {
3838
3939 private static final String IMAGE_OBAMA = "src/test/resources/alchemy/obama.jpg" ;
4040 private static final String IMAGE_COLORADO = "src/test/resources/alchemy/colorado.jpg" ;
41- private static final String IMAGE_COLORADO_URL = "http ://vision.alchemy.ai/img/demo/1754836 .jpg" ;
41+ private static final String IMAGE_COLORADO_URL = "https ://raw.githubusercontent.com/watson-developer-cloud/doc-tutorial-downloads/master/visual-recognition/colorado .jpg" ;
4242 private static final String BABY_IMAGE =
4343 "https://visual-recognition-demo.mybluemix.net/images/samples/1.jpg" ;
4444
Original file line number Diff line number Diff line change 2121
2222import org .junit .Assert ;
2323import org .junit .Before ;
24+ import org .junit .Ignore ;
2425import org .junit .Test ;
2526
2627import com .ibm .watson .developer_cloud .WatsonServiceTest ;
5354/**
5455 * The Class ConceptInsightsTest.
5556 */
57+ @ Ignore
5658public class ConceptInsightsIT extends WatsonServiceTest {
5759
5860 /** The Constant PUBLIC. */
Original file line number Diff line number Diff line change 1818import java .util .Map ;
1919
2020import org .junit .Before ;
21+ import org .junit .Ignore ;
2122import org .junit .Test ;
2223
2324import com .ibm .watson .developer_cloud .WatsonServiceTest ;
2728/**
2829 * Integration test for the {@link ConversationService}.
2930 */
31+ @ Ignore
3032public class ConversationServiceIT extends WatsonServiceTest {
3133
3234 private ConversationService service ;
Original file line number Diff line number Diff line change 1313 */
1414package com .ibm .watson .developer_cloud .retrieve_and_rank .v1 ;
1515
16- import static org .junit .Assert .*;
16+ import static org .junit .Assert .assertEquals ;
17+ import static org .junit .Assert .assertFalse ;
18+ import static org .junit .Assert .assertNotNull ;
19+ import static org .junit .Assert .assertNull ;
20+ import static org .junit .Assert .assertTrue ;
1721
1822import java .io .File ;
1923import java .io .FileInputStream ;
@@ -81,6 +85,7 @@ public void setUp() throws Exception {
8185 /**
8286 * Test delete all rankers.
8387 */
88+ @ Ignore
8489 @ Test
8590 public void testDeleteAllRankers () {
8691 List <Ranker > rankers = service .getRankers ().execute ().getRankers ();
@@ -208,6 +213,7 @@ public void testGetRankerStatus() {
208213 * Test get solr cluster.
209214 */
210215 @ Test
216+ @ Ignore
211217 public void testGetSolrCluster () {
212218 final SolrCluster cluster = service .getSolrCluster (clusterId ).execute ();
213219 assertNotNull (cluster );
@@ -323,6 +329,7 @@ public void testUploadAndDeleteSolrClusterConfigurationZip() {
323329 * @throws InterruptedException
324330 */
325331 @ Test
332+ @ Ignore
326333 public void testSolrClusterResize () throws InterruptedException {
327334 SolrClusterSizeResponse resizeRequestResponse =
328335 service .resizeSolrCluster (clusterId , 2 ).execute ();
Original file line number Diff line number Diff line change 1515
1616import org .junit .Assert ;
1717import org .junit .Before ;
18+ import org .junit .Ignore ;
1819import org .junit .Test ;
1920
2021import com .ibm .watson .developer_cloud .WatsonServiceTest ;
2122import com .ibm .watson .developer_cloud .tone_analyzer .v3_beta .model .ToneAnalysis ;
2223
2324/**
24- * Tone Analyzer Integration tests.
25+ * Tone Analyzer v3 Beta Integration tests.
2526 */
27+ @ Ignore
2628public class ToneAnalyzerIT extends WatsonServiceTest {
2729
2830 /** The service. */
You can’t perform that action at this time.
0 commit comments