Skip to content

Commit 4c549e0

Browse files
committed
test(Text to Speech): Temporarily ignore tests using problematic endpoint
1 parent ca62e69 commit 4c549e0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

text-to-speech/src/test/java/com/ibm/watson/developer_cloud/text_to_speech/v1/CustomizationsIT.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
import org.junit.After;
3838
import org.junit.Assume;
3939
import org.junit.Before;
40+
import org.junit.Ignore;
4041
import org.junit.Test;
4142

4243
import java.io.IOException;
@@ -151,6 +152,7 @@ public void cleanUp() {
151152
* Test create voice model.
152153
*/
153154
@Test
155+
@Ignore
154156
public void testCreateVoiceModel() {
155157
model = createVoiceModel();
156158

@@ -161,6 +163,7 @@ public void testCreateVoiceModel() {
161163
* Test create voice model for Japanese.
162164
*/
163165
@Test
166+
@Ignore
164167
public void testCreateVoiceModelJapanese() {
165168
model = createVoiceModelJapanese();
166169

@@ -171,6 +174,7 @@ public void testCreateVoiceModelJapanese() {
171174
* Test get voice model.
172175
*/
173176
@Test
177+
@Ignore
174178
public void testGetVoiceModelString() {
175179
model = createVoiceModel();
176180
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder()
@@ -189,6 +193,7 @@ public void testGetVoiceModelString() {
189193
* Test get voice model.
190194
*/
191195
@Test
196+
@Ignore
192197
public void testGetVoiceModelObject() {
193198
model = createVoiceModel();
194199
GetVoiceModelOptions getOptions = new GetVoiceModelOptions.Builder()
@@ -207,6 +212,7 @@ public void testGetVoiceModelObject() {
207212
* Test get voice with customization.
208213
*/
209214
@Test
215+
@Ignore
210216
public void testGetVoiceCustomization() {
211217
model = createVoiceModel();
212218
GetVoiceModelOptions getVoiceModelOptions = new GetVoiceModelOptions.Builder()
@@ -235,6 +241,7 @@ public void testGetVoiceCustomization() {
235241
* Test update voice model with new name and ignored language change.
236242
*/
237243
@Test
244+
@Ignore
238245
public void testUpdateVoiceModel() {
239246
final String newName = "new test";
240247

@@ -258,6 +265,7 @@ public void testUpdateVoiceModel() {
258265
* Test update voice model with new name and new custom translations.
259266
*/
260267
@Test
268+
@Ignore
261269
public void testUpdateVoiceModelWords() {
262270
final String newName = "new test";
263271

@@ -282,6 +290,7 @@ public void testUpdateVoiceModelWords() {
282290
* Test delete voice model.
283291
*/
284292
@Test
293+
@Ignore
285294
public void testDeleteVoiceModel() {
286295
model = createVoiceModel();
287296

@@ -317,6 +326,7 @@ public void testListModels() {
317326
* Test list models after create.
318327
*/
319328
@Test
329+
@Ignore
320330
public void testListModelsAfterCreate() {
321331
model = createVoiceModel();
322332
ListVoiceModelsOptions listOptions = new ListVoiceModelsOptions.Builder()
@@ -340,6 +350,7 @@ public void testListModelsAfterCreate() {
340350
* Test add word.
341351
*/
342352
@Test
353+
@Ignore
343354
public void testAddWord() {
344355
model = createVoiceModel();
345356
final Word expected = instantiateWords().get(0);
@@ -367,6 +378,7 @@ public void testAddWord() {
367378
* Test add words and list words.
368379
*/
369380
@Test
381+
@Ignore
370382
public void testAddWords() {
371383
model = createVoiceModel();
372384
final List<Word> expected = instantiateWords();
@@ -388,6 +400,7 @@ public void testAddWords() {
388400
* Test add words and list words for Japanese.
389401
*/
390402
@Test
403+
@Ignore
391404
public void testAddWordsJapanese() {
392405
model = createVoiceModelJapanese();
393406
final List<Word> expected = instantiateWordsJapanese();
@@ -409,6 +422,7 @@ public void testAddWordsJapanese() {
409422
* Test get word.
410423
*/
411424
@Test
425+
@Ignore
412426
public void testGetWord() {
413427
model = createVoiceModel();
414428
final List<Word> expected = instantiateWords();
@@ -431,6 +445,7 @@ public void testGetWord() {
431445
* Test get word for Japanese.
432446
*/
433447
@Test
448+
@Ignore
434449
public void testGetWordJapanese() {
435450
model = createVoiceModelJapanese();
436451
final List<Word> expected = instantiateWordsJapanese();
@@ -454,6 +469,7 @@ public void testGetWordJapanese() {
454469
* Test delete word with string.
455470
*/
456471
@Test
472+
@Ignore
457473
public void testDeleteWord() {
458474
model = createVoiceModel();
459475
final Word expected = instantiateWords().get(0);
@@ -483,6 +499,7 @@ public void testDeleteWord() {
483499
* @throws IOException Signals that an I/O exception has occurred.
484500
*/
485501
@Test
502+
@Ignore
486503
public void testSynthesize() throws IOException {
487504
model = createVoiceModel();
488505
final Word expected = instantiateWords().get(0);

0 commit comments

Comments
 (0)