@@ -259,108 +259,12 @@ class FunctionalTestsAnonymousClient: FunctionalTestsInsecureTransport {
259
259
override var transportSecurity : TransportSecurity {
260
260
return . anonymousClient
261
261
}
262
-
263
- override func testUnary( ) throws {
264
- try super. testUnary ( )
265
- }
266
-
267
- override func testUnaryLotsOfRequests( ) throws {
268
- try super. testUnaryLotsOfRequests ( )
269
- }
270
-
271
- override func testUnaryWithLargeData( ) throws {
272
- try super. testUnaryWithLargeData ( )
273
- }
274
-
275
- override func testUnaryEmptyRequest( ) throws {
276
- try super. testUnaryEmptyRequest ( )
277
- }
278
-
279
- override func testClientStreaming( ) {
280
- super. testClientStreaming ( )
281
- }
282
-
283
- override func testClientStreamingLotsOfMessages( ) throws {
284
- try super. testClientStreamingLotsOfMessages ( )
285
- }
286
-
287
- override func testServerStreaming( ) {
288
- super. testServerStreaming ( )
289
- }
290
-
291
- override func testServerStreamingLotsOfMessages( ) {
292
- super. testServerStreamingLotsOfMessages ( )
293
- }
294
-
295
- override func testBidirectionalStreamingBatched( ) throws {
296
- try super. testBidirectionalStreamingBatched ( )
297
- }
298
-
299
- override func testBidirectionalStreamingPingPong( ) throws {
300
- try super. testBidirectionalStreamingPingPong ( )
301
- }
302
-
303
- override func testBidirectionalStreamingLotsOfMessagesBatched( ) throws {
304
- try super. testBidirectionalStreamingLotsOfMessagesBatched ( )
305
- }
306
-
307
- override func testBidirectionalStreamingLotsOfMessagesPingPong( ) throws {
308
- try super. testBidirectionalStreamingLotsOfMessagesPingPong ( )
309
- }
310
262
}
311
263
312
264
class FunctionalTestsMutualAuthentication : FunctionalTestsInsecureTransport {
313
265
override var transportSecurity : TransportSecurity {
314
266
return . mutualAuthentication
315
267
}
316
-
317
- override func testUnary( ) throws {
318
- try super. testUnary ( )
319
- }
320
-
321
- override func testUnaryLotsOfRequests( ) throws {
322
- try super. testUnaryLotsOfRequests ( )
323
- }
324
-
325
- override func testUnaryWithLargeData( ) throws {
326
- try super. testUnaryWithLargeData ( )
327
- }
328
-
329
- override func testUnaryEmptyRequest( ) throws {
330
- try super. testUnaryEmptyRequest ( )
331
- }
332
-
333
- override func testClientStreaming( ) {
334
- super. testClientStreaming ( )
335
- }
336
-
337
- override func testClientStreamingLotsOfMessages( ) throws {
338
- try super. testClientStreamingLotsOfMessages ( )
339
- }
340
-
341
- override func testServerStreaming( ) {
342
- super. testServerStreaming ( )
343
- }
344
-
345
- override func testServerStreamingLotsOfMessages( ) {
346
- super. testServerStreamingLotsOfMessages ( )
347
- }
348
-
349
- override func testBidirectionalStreamingBatched( ) throws {
350
- try super. testBidirectionalStreamingBatched ( )
351
- }
352
-
353
- override func testBidirectionalStreamingPingPong( ) throws {
354
- try super. testBidirectionalStreamingPingPong ( )
355
- }
356
-
357
- override func testBidirectionalStreamingLotsOfMessagesBatched( ) throws {
358
- try super. testBidirectionalStreamingLotsOfMessagesBatched ( )
359
- }
360
-
361
- override func testBidirectionalStreamingLotsOfMessagesPingPong( ) throws {
362
- try super. testBidirectionalStreamingLotsOfMessagesPingPong ( )
363
- }
364
268
}
365
269
#endif // canImport(NIOSSL)
366
270
@@ -460,108 +364,12 @@ class FunctionalTestsAnonymousClientNIOTS: FunctionalTestsInsecureTransportNIOTS
460
364
override var transportSecurity : TransportSecurity {
461
365
return . anonymousClient
462
366
}
463
-
464
- override func testUnary( ) throws {
465
- try super. testUnary ( )
466
- }
467
-
468
- override func testUnaryLotsOfRequests( ) throws {
469
- try super. testUnaryLotsOfRequests ( )
470
- }
471
-
472
- override func testUnaryWithLargeData( ) throws {
473
- try super. testUnaryWithLargeData ( )
474
- }
475
-
476
- override func testUnaryEmptyRequest( ) throws {
477
- try super. testUnaryEmptyRequest ( )
478
- }
479
-
480
- override func testClientStreaming( ) {
481
- super. testClientStreaming ( )
482
- }
483
-
484
- override func testClientStreamingLotsOfMessages( ) throws {
485
- try super. testClientStreamingLotsOfMessages ( )
486
- }
487
-
488
- override func testServerStreaming( ) {
489
- super. testServerStreaming ( )
490
- }
491
-
492
- override func testServerStreamingLotsOfMessages( ) {
493
- super. testServerStreamingLotsOfMessages ( )
494
- }
495
-
496
- override func testBidirectionalStreamingBatched( ) throws {
497
- try super. testBidirectionalStreamingBatched ( )
498
- }
499
-
500
- override func testBidirectionalStreamingPingPong( ) throws {
501
- try super. testBidirectionalStreamingPingPong ( )
502
- }
503
-
504
- override func testBidirectionalStreamingLotsOfMessagesBatched( ) throws {
505
- try super. testBidirectionalStreamingLotsOfMessagesBatched ( )
506
- }
507
-
508
- override func testBidirectionalStreamingLotsOfMessagesPingPong( ) throws {
509
- try super. testBidirectionalStreamingLotsOfMessagesPingPong ( )
510
- }
511
367
}
512
368
513
369
@available ( OSX 10 . 14 , iOS 12 . 0 , tvOS 12 . 0 , watchOS 6 . 0 , * )
514
370
class FunctionalTestsMutualAuthenticationNIOTS : FunctionalTestsInsecureTransportNIOTS {
515
371
override var transportSecurity : TransportSecurity {
516
372
return . mutualAuthentication
517
373
}
518
-
519
- override func testUnary( ) throws {
520
- try super. testUnary ( )
521
- }
522
-
523
- override func testUnaryLotsOfRequests( ) throws {
524
- try super. testUnaryLotsOfRequests ( )
525
- }
526
-
527
- override func testUnaryWithLargeData( ) throws {
528
- try super. testUnaryWithLargeData ( )
529
- }
530
-
531
- override func testUnaryEmptyRequest( ) throws {
532
- try super. testUnaryEmptyRequest ( )
533
- }
534
-
535
- override func testClientStreaming( ) {
536
- super. testClientStreaming ( )
537
- }
538
-
539
- override func testClientStreamingLotsOfMessages( ) throws {
540
- try super. testClientStreamingLotsOfMessages ( )
541
- }
542
-
543
- override func testServerStreaming( ) {
544
- super. testServerStreaming ( )
545
- }
546
-
547
- override func testServerStreamingLotsOfMessages( ) {
548
- super. testServerStreamingLotsOfMessages ( )
549
- }
550
-
551
- override func testBidirectionalStreamingBatched( ) throws {
552
- try super. testBidirectionalStreamingBatched ( )
553
- }
554
-
555
- override func testBidirectionalStreamingPingPong( ) throws {
556
- try super. testBidirectionalStreamingPingPong ( )
557
- }
558
-
559
- override func testBidirectionalStreamingLotsOfMessagesBatched( ) throws {
560
- try super. testBidirectionalStreamingLotsOfMessagesBatched ( )
561
- }
562
-
563
- override func testBidirectionalStreamingLotsOfMessagesPingPong( ) throws {
564
- try super. testBidirectionalStreamingLotsOfMessagesPingPong ( )
565
- }
566
374
}
567
375
#endif // canImport(NIOSSL)
0 commit comments