37
37
import org .junit .After ;
38
38
import org .junit .Assume ;
39
39
import org .junit .Before ;
40
+ import org .junit .Ignore ;
40
41
import org .junit .Test ;
41
42
42
43
import java .io .IOException ;
@@ -151,6 +152,7 @@ public void cleanUp() {
151
152
* Test create voice model.
152
153
*/
153
154
@ Test
155
+ @ Ignore
154
156
public void testCreateVoiceModel () {
155
157
model = createVoiceModel ();
156
158
@@ -161,6 +163,7 @@ public void testCreateVoiceModel() {
161
163
* Test create voice model for Japanese.
162
164
*/
163
165
@ Test
166
+ @ Ignore
164
167
public void testCreateVoiceModelJapanese () {
165
168
model = createVoiceModelJapanese ();
166
169
@@ -171,6 +174,7 @@ public void testCreateVoiceModelJapanese() {
171
174
* Test get voice model.
172
175
*/
173
176
@ Test
177
+ @ Ignore
174
178
public void testGetVoiceModelString () {
175
179
model = createVoiceModel ();
176
180
GetVoiceModelOptions getOptions = new GetVoiceModelOptions .Builder ()
@@ -189,6 +193,7 @@ public void testGetVoiceModelString() {
189
193
* Test get voice model.
190
194
*/
191
195
@ Test
196
+ @ Ignore
192
197
public void testGetVoiceModelObject () {
193
198
model = createVoiceModel ();
194
199
GetVoiceModelOptions getOptions = new GetVoiceModelOptions .Builder ()
@@ -207,6 +212,7 @@ public void testGetVoiceModelObject() {
207
212
* Test get voice with customization.
208
213
*/
209
214
@ Test
215
+ @ Ignore
210
216
public void testGetVoiceCustomization () {
211
217
model = createVoiceModel ();
212
218
GetVoiceModelOptions getVoiceModelOptions = new GetVoiceModelOptions .Builder ()
@@ -235,6 +241,7 @@ public void testGetVoiceCustomization() {
235
241
* Test update voice model with new name and ignored language change.
236
242
*/
237
243
@ Test
244
+ @ Ignore
238
245
public void testUpdateVoiceModel () {
239
246
final String newName = "new test" ;
240
247
@@ -258,6 +265,7 @@ public void testUpdateVoiceModel() {
258
265
* Test update voice model with new name and new custom translations.
259
266
*/
260
267
@ Test
268
+ @ Ignore
261
269
public void testUpdateVoiceModelWords () {
262
270
final String newName = "new test" ;
263
271
@@ -282,6 +290,7 @@ public void testUpdateVoiceModelWords() {
282
290
* Test delete voice model.
283
291
*/
284
292
@ Test
293
+ @ Ignore
285
294
public void testDeleteVoiceModel () {
286
295
model = createVoiceModel ();
287
296
@@ -317,6 +326,7 @@ public void testListModels() {
317
326
* Test list models after create.
318
327
*/
319
328
@ Test
329
+ @ Ignore
320
330
public void testListModelsAfterCreate () {
321
331
model = createVoiceModel ();
322
332
ListVoiceModelsOptions listOptions = new ListVoiceModelsOptions .Builder ()
@@ -340,6 +350,7 @@ public void testListModelsAfterCreate() {
340
350
* Test add word.
341
351
*/
342
352
@ Test
353
+ @ Ignore
343
354
public void testAddWord () {
344
355
model = createVoiceModel ();
345
356
final Word expected = instantiateWords ().get (0 );
@@ -367,6 +378,7 @@ public void testAddWord() {
367
378
* Test add words and list words.
368
379
*/
369
380
@ Test
381
+ @ Ignore
370
382
public void testAddWords () {
371
383
model = createVoiceModel ();
372
384
final List <Word > expected = instantiateWords ();
@@ -388,6 +400,7 @@ public void testAddWords() {
388
400
* Test add words and list words for Japanese.
389
401
*/
390
402
@ Test
403
+ @ Ignore
391
404
public void testAddWordsJapanese () {
392
405
model = createVoiceModelJapanese ();
393
406
final List <Word > expected = instantiateWordsJapanese ();
@@ -409,6 +422,7 @@ public void testAddWordsJapanese() {
409
422
* Test get word.
410
423
*/
411
424
@ Test
425
+ @ Ignore
412
426
public void testGetWord () {
413
427
model = createVoiceModel ();
414
428
final List <Word > expected = instantiateWords ();
@@ -431,6 +445,7 @@ public void testGetWord() {
431
445
* Test get word for Japanese.
432
446
*/
433
447
@ Test
448
+ @ Ignore
434
449
public void testGetWordJapanese () {
435
450
model = createVoiceModelJapanese ();
436
451
final List <Word > expected = instantiateWordsJapanese ();
@@ -454,6 +469,7 @@ public void testGetWordJapanese() {
454
469
* Test delete word with string.
455
470
*/
456
471
@ Test
472
+ @ Ignore
457
473
public void testDeleteWord () {
458
474
model = createVoiceModel ();
459
475
final Word expected = instantiateWords ().get (0 );
@@ -483,6 +499,7 @@ public void testDeleteWord() {
483
499
* @throws IOException Signals that an I/O exception has occurred.
484
500
*/
485
501
@ Test
502
+ @ Ignore
486
503
public void testSynthesize () throws IOException {
487
504
model = createVoiceModel ();
488
505
final Word expected = instantiateWords ().get (0 );
0 commit comments