XCTestManifests.swift 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. #if !canImport(ObjectiveC)
  2. import XCTest
  3. extension AnyServiceClientTests {
  4. // DO NOT MODIFY: This is autogenerated, use:
  5. // `swift test --generate-linuxmain`
  6. // to regenerate.
  7. static let __allTests__AnyServiceClientTests = [
  8. ("testBidirectionalStreaming", testBidirectionalStreaming),
  9. ("testClientStreaming", testClientStreaming),
  10. ("testServerStreaming", testServerStreaming),
  11. ("testUnary", testUnary),
  12. ]
  13. }
  14. extension ClientCancellingTests {
  15. // DO NOT MODIFY: This is autogenerated, use:
  16. // `swift test --generate-linuxmain`
  17. // to regenerate.
  18. static let __allTests__ClientCancellingTests = [
  19. ("testBidirectionalStreaming", testBidirectionalStreaming),
  20. ("testClientStreaming", testClientStreaming),
  21. ("testServerStreaming", testServerStreaming),
  22. ("testUnary", testUnary),
  23. ]
  24. }
  25. extension ClientClosedChannelTests {
  26. // DO NOT MODIFY: This is autogenerated, use:
  27. // `swift test --generate-linuxmain`
  28. // to regenerate.
  29. static let __allTests__ClientClosedChannelTests = [
  30. ("testBidirectionalStreamingOnClosedConnection", testBidirectionalStreamingOnClosedConnection),
  31. ("testBidirectionalStreamingWhenConnectionIsClosedBetweenMessages", testBidirectionalStreamingWhenConnectionIsClosedBetweenMessages),
  32. ("testBidirectionalStreamingWithNoPromiseWhenConnectionIsClosedBetweenMessages", testBidirectionalStreamingWithNoPromiseWhenConnectionIsClosedBetweenMessages),
  33. ("testClientStreamingOnClosedConnection", testClientStreamingOnClosedConnection),
  34. ("testClientStreamingWhenConnectionIsClosedBetweenMessages", testClientStreamingWhenConnectionIsClosedBetweenMessages),
  35. ("testServerStreamingOnClosedConnection", testServerStreamingOnClosedConnection),
  36. ("testUnaryOnClosedConnection", testUnaryOnClosedConnection),
  37. ]
  38. }
  39. extension ClientConnectionBackoffTests {
  40. // DO NOT MODIFY: This is autogenerated, use:
  41. // `swift test --generate-linuxmain`
  42. // to regenerate.
  43. static let __allTests__ClientConnectionBackoffTests = [
  44. ("testClientConnectionFailsWithNoBackoff", testClientConnectionFailsWithNoBackoff),
  45. ("testClientEventuallyConnects", testClientEventuallyConnects),
  46. ("testClientReconnectsAutomatically", testClientReconnectsAutomatically),
  47. ]
  48. }
  49. extension ClientTLSFailureTests {
  50. // DO NOT MODIFY: This is autogenerated, use:
  51. // `swift test --generate-linuxmain`
  52. // to regenerate.
  53. static let __allTests__ClientTLSFailureTests = [
  54. ("testClientConnectionFailsWhenHostnameIsNotValid", testClientConnectionFailsWhenHostnameIsNotValid),
  55. ("testClientConnectionFailsWhenProtocolCanNotBeNegotiated", testClientConnectionFailsWhenProtocolCanNotBeNegotiated),
  56. ("testClientConnectionFailsWhenServerIsUnknown", testClientConnectionFailsWhenServerIsUnknown),
  57. ]
  58. }
  59. extension ClientTLSHostnameOverrideTests {
  60. // DO NOT MODIFY: This is autogenerated, use:
  61. // `swift test --generate-linuxmain`
  62. // to regenerate.
  63. static let __allTests__ClientTLSHostnameOverrideTests = [
  64. ("testTLSWithHostnameOverride", testTLSWithHostnameOverride),
  65. ("testTLSWithoutHostnameOverride", testTLSWithoutHostnameOverride),
  66. ]
  67. }
  68. extension ClientThrowingWhenServerReturningErrorTests {
  69. // DO NOT MODIFY: This is autogenerated, use:
  70. // `swift test --generate-linuxmain`
  71. // to regenerate.
  72. static let __allTests__ClientThrowingWhenServerReturningErrorTests = [
  73. ("testBidirectionalStreaming", testBidirectionalStreaming),
  74. ("testClientStreaming", testClientStreaming),
  75. ("testServerStreaming", testServerStreaming),
  76. ("testUnary", testUnary),
  77. ]
  78. }
  79. extension ClientTimeoutTests {
  80. // DO NOT MODIFY: This is autogenerated, use:
  81. // `swift test --generate-linuxmain`
  82. // to regenerate.
  83. static let __allTests__ClientTimeoutTests = [
  84. ("testBidirectionalStreamingTimeoutAfterSending", testBidirectionalStreamingTimeoutAfterSending),
  85. ("testBidirectionalStreamingTimeoutBeforeSending", testBidirectionalStreamingTimeoutBeforeSending),
  86. ("testClientStreamingTimeoutAfterSending", testClientStreamingTimeoutAfterSending),
  87. ("testClientStreamingTimeoutBeforeSending", testClientStreamingTimeoutBeforeSending),
  88. ("testServerStreamingTimeoutAfterSending", testServerStreamingTimeoutAfterSending),
  89. ("testUnaryTimeoutAfterSending", testUnaryTimeoutAfterSending),
  90. ]
  91. }
  92. extension ConnectionBackoffTests {
  93. // DO NOT MODIFY: This is autogenerated, use:
  94. // `swift test --generate-linuxmain`
  95. // to regenerate.
  96. static let __allTests__ConnectionBackoffTests = [
  97. ("testBackoffDoesNotExceedMaximum", testBackoffDoesNotExceedMaximum),
  98. ("testBackoffWithJitter", testBackoffWithJitter),
  99. ("testBackoffWithNoJitter", testBackoffWithNoJitter),
  100. ("testConnectionTimeoutAlwaysGreatherThanOrEqualToMinimum", testConnectionTimeoutAlwaysGreatherThanOrEqualToMinimum),
  101. ("testExpectedValuesWithNoJitter", testExpectedValuesWithNoJitter),
  102. ]
  103. }
  104. extension ConnectivityStateMonitorTests {
  105. // DO NOT MODIFY: This is autogenerated, use:
  106. // `swift test --generate-linuxmain`
  107. // to regenerate.
  108. static let __allTests__ConnectivityStateMonitorTests = [
  109. ("testDelegateOnlyCalledForChanges", testDelegateOnlyCalledForChanges),
  110. ]
  111. }
  112. extension FunctionalTestsAnonymousClient {
  113. // DO NOT MODIFY: This is autogenerated, use:
  114. // `swift test --generate-linuxmain`
  115. // to regenerate.
  116. static let __allTests__FunctionalTestsAnonymousClient = [
  117. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  118. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  119. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  120. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  121. ("testClientStreaming", testClientStreaming),
  122. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  123. ("testServerStreaming", testServerStreaming),
  124. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  125. ("testUnary", testUnary),
  126. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  127. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  128. ("testUnaryWithLargeData", testUnaryWithLargeData),
  129. ]
  130. }
  131. extension FunctionalTestsAnonymousClientNIOTS {
  132. // DO NOT MODIFY: This is autogenerated, use:
  133. // `swift test --generate-linuxmain`
  134. // to regenerate.
  135. static let __allTests__FunctionalTestsAnonymousClientNIOTS = [
  136. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  137. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  138. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  139. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  140. ("testClientStreaming", testClientStreaming),
  141. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  142. ("testServerStreaming", testServerStreaming),
  143. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  144. ("testUnary", testUnary),
  145. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  146. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  147. ("testUnaryWithLargeData", testUnaryWithLargeData),
  148. ]
  149. }
  150. extension FunctionalTestsInsecureTransport {
  151. // DO NOT MODIFY: This is autogenerated, use:
  152. // `swift test --generate-linuxmain`
  153. // to regenerate.
  154. static let __allTests__FunctionalTestsInsecureTransport = [
  155. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  156. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  157. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  158. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  159. ("testClientStreaming", testClientStreaming),
  160. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  161. ("testServerStreaming", testServerStreaming),
  162. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  163. ("testUnary", testUnary),
  164. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  165. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  166. ("testUnaryWithLargeData", testUnaryWithLargeData),
  167. ]
  168. }
  169. extension FunctionalTestsInsecureTransportNIOTS {
  170. // DO NOT MODIFY: This is autogenerated, use:
  171. // `swift test --generate-linuxmain`
  172. // to regenerate.
  173. static let __allTests__FunctionalTestsInsecureTransportNIOTS = [
  174. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  175. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  176. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  177. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  178. ("testClientStreaming", testClientStreaming),
  179. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  180. ("testServerStreaming", testServerStreaming),
  181. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  182. ("testUnary", testUnary),
  183. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  184. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  185. ("testUnaryWithLargeData", testUnaryWithLargeData),
  186. ]
  187. }
  188. extension FunctionalTestsMutualAuthentication {
  189. // DO NOT MODIFY: This is autogenerated, use:
  190. // `swift test --generate-linuxmain`
  191. // to regenerate.
  192. static let __allTests__FunctionalTestsMutualAuthentication = [
  193. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  194. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  195. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  196. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  197. ("testClientStreaming", testClientStreaming),
  198. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  199. ("testServerStreaming", testServerStreaming),
  200. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  201. ("testUnary", testUnary),
  202. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  203. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  204. ("testUnaryWithLargeData", testUnaryWithLargeData),
  205. ]
  206. }
  207. extension FunctionalTestsMutualAuthenticationNIOTS {
  208. // DO NOT MODIFY: This is autogenerated, use:
  209. // `swift test --generate-linuxmain`
  210. // to regenerate.
  211. static let __allTests__FunctionalTestsMutualAuthenticationNIOTS = [
  212. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  213. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  214. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  215. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  216. ("testClientStreaming", testClientStreaming),
  217. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  218. ("testServerStreaming", testServerStreaming),
  219. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  220. ("testUnary", testUnary),
  221. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  222. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  223. ("testUnaryWithLargeData", testUnaryWithLargeData),
  224. ]
  225. }
  226. extension GRPCChannelHandlerTests {
  227. // DO NOT MODIFY: This is autogenerated, use:
  228. // `swift test --generate-linuxmain`
  229. // to regenerate.
  230. static let __allTests__GRPCChannelHandlerTests = [
  231. ("testImplementedMethodReturnsHeadersMessageAndStatus", testImplementedMethodReturnsHeadersMessageAndStatus),
  232. ("testImplementedMethodReturnsStatusForBadlyFormedProto", testImplementedMethodReturnsStatusForBadlyFormedProto),
  233. ("testUnimplementedMethodReturnsUnimplementedStatus", testUnimplementedMethodReturnsUnimplementedStatus),
  234. ]
  235. }
  236. extension GRPCInsecureInteroperabilityTests {
  237. // DO NOT MODIFY: This is autogenerated, use:
  238. // `swift test --generate-linuxmain`
  239. // to regenerate.
  240. static let __allTests__GRPCInsecureInteroperabilityTests = [
  241. ("testCacheableUnary", testCacheableUnary),
  242. ("testCancelAfterBegin", testCancelAfterBegin),
  243. ("testCancelAfterFirstResponse", testCancelAfterFirstResponse),
  244. ("testClientStreaming", testClientStreaming),
  245. ("testCustomMetadata", testCustomMetadata),
  246. ("testEmptyStream", testEmptyStream),
  247. ("testEmptyUnary", testEmptyUnary),
  248. ("testLargeUnary", testLargeUnary),
  249. ("testPingPong", testPingPong),
  250. ("testServerStreaming", testServerStreaming),
  251. ("testSpecialStatusAndMessage", testSpecialStatusAndMessage),
  252. ("testStatusCodeAndMessage", testStatusCodeAndMessage),
  253. ("testTimeoutOnSleepingServer", testTimeoutOnSleepingServer),
  254. ("testUnimplementedMethod", testUnimplementedMethod),
  255. ("testUnimplementedService", testUnimplementedService),
  256. ]
  257. }
  258. extension GRPCSecureInteroperabilityTests {
  259. // DO NOT MODIFY: This is autogenerated, use:
  260. // `swift test --generate-linuxmain`
  261. // to regenerate.
  262. static let __allTests__GRPCSecureInteroperabilityTests = [
  263. ("testCacheableUnary", testCacheableUnary),
  264. ("testCancelAfterBegin", testCancelAfterBegin),
  265. ("testCancelAfterFirstResponse", testCancelAfterFirstResponse),
  266. ("testClientStreaming", testClientStreaming),
  267. ("testCustomMetadata", testCustomMetadata),
  268. ("testEmptyStream", testEmptyStream),
  269. ("testEmptyUnary", testEmptyUnary),
  270. ("testLargeUnary", testLargeUnary),
  271. ("testPingPong", testPingPong),
  272. ("testServerStreaming", testServerStreaming),
  273. ("testSpecialStatusAndMessage", testSpecialStatusAndMessage),
  274. ("testStatusCodeAndMessage", testStatusCodeAndMessage),
  275. ("testTimeoutOnSleepingServer", testTimeoutOnSleepingServer),
  276. ("testUnimplementedMethod", testUnimplementedMethod),
  277. ("testUnimplementedService", testUnimplementedService),
  278. ]
  279. }
  280. extension GRPCStatusCodeTests {
  281. // DO NOT MODIFY: This is autogenerated, use:
  282. // `swift test --generate-linuxmain`
  283. // to regenerate.
  284. static let __allTests__GRPCStatusCodeTests = [
  285. ("testBadGateway", testBadGateway),
  286. ("testBadRequest", testBadRequest),
  287. ("testForbidden", testForbidden),
  288. ("testGatewayTimeout", testGatewayTimeout),
  289. ("testNotFound", testNotFound),
  290. ("testServiceUnavailable", testServiceUnavailable),
  291. ("testStatusCodeAndMessageAreRespectedForNon200Responses", testStatusCodeAndMessageAreRespectedForNon200Responses),
  292. ("testTooManyRequests", testTooManyRequests),
  293. ("testUnauthorized", testUnauthorized),
  294. ]
  295. }
  296. extension GRPCStatusMessageMarshallerTests {
  297. // DO NOT MODIFY: This is autogenerated, use:
  298. // `swift test --generate-linuxmain`
  299. // to regenerate.
  300. static let __allTests__GRPCStatusMessageMarshallerTests = [
  301. ("testASCIIMarshallingAndUnmarshalling", testASCIIMarshallingAndUnmarshalling),
  302. ("testPercentMarshallingAndUnmarshalling", testPercentMarshallingAndUnmarshalling),
  303. ("testUnicodeMarshalling", testUnicodeMarshalling),
  304. ]
  305. }
  306. extension GRPCTypeSizeTests {
  307. // DO NOT MODIFY: This is autogenerated, use:
  308. // `swift test --generate-linuxmain`
  309. // to regenerate.
  310. static let __allTests__GRPCTypeSizeTests = [
  311. ("testGRPCClientRequestPart", testGRPCClientRequestPart),
  312. ("testGRPCClientResponsePart", testGRPCClientResponsePart),
  313. ("testGRPCStatus", testGRPCStatus),
  314. ("testRawGRPCClientRequestPart", testRawGRPCClientRequestPart),
  315. ("testRawGRPCClientResponsePart", testRawGRPCClientResponsePart),
  316. ]
  317. }
  318. extension HTTP1ToRawGRPCServerCodecTests {
  319. // DO NOT MODIFY: This is autogenerated, use:
  320. // `swift test --generate-linuxmain`
  321. // to regenerate.
  322. static let __allTests__HTTP1ToRawGRPCServerCodecTests = [
  323. ("testInternalErrorStatusIsReturnedIfMessageCannotBeDeserialized", testInternalErrorStatusIsReturnedIfMessageCannotBeDeserialized),
  324. ("testInternalErrorStatusIsReturnedWhenSendingTrailersInRequest", testInternalErrorStatusIsReturnedWhenSendingTrailersInRequest),
  325. ("testInternalErrorStatusReturnedWhenCompressionFlagIsSet", testInternalErrorStatusReturnedWhenCompressionFlagIsSet),
  326. ("testMessageCanBeSentAcrossMultipleByteBuffers", testMessageCanBeSentAcrossMultipleByteBuffers),
  327. ("testOnlyOneStatusIsReturned", testOnlyOneStatusIsReturned),
  328. ]
  329. }
  330. extension ImmediatelyFailingProviderTests {
  331. // DO NOT MODIFY: This is autogenerated, use:
  332. // `swift test --generate-linuxmain`
  333. // to regenerate.
  334. static let __allTests__ImmediatelyFailingProviderTests = [
  335. ("testBidirectionalStreaming", testBidirectionalStreaming),
  336. ("testClientStreaming", testClientStreaming),
  337. ("testServerStreaming", testServerStreaming),
  338. ("testUnary", testUnary),
  339. ]
  340. }
  341. extension LengthPrefixedMessageReaderTests {
  342. // DO NOT MODIFY: This is autogenerated, use:
  343. // `swift test --generate-linuxmain`
  344. // to regenerate.
  345. static let __allTests__LengthPrefixedMessageReaderTests = [
  346. ("testAppendReadsAllBytes", testAppendReadsAllBytes),
  347. ("testNextMessageDeliveredAcrossMultipleByteBuffers", testNextMessageDeliveredAcrossMultipleByteBuffers),
  348. ("testNextMessageDoesNotThrowWhenCompressionFlagIsExpectedButNotSet", testNextMessageDoesNotThrowWhenCompressionFlagIsExpectedButNotSet),
  349. ("testNextMessageReturnsMessageForZeroLengthMessage", testNextMessageReturnsMessageForZeroLengthMessage),
  350. ("testNextMessageReturnsMessageIsAppendedInOneBuffer", testNextMessageReturnsMessageIsAppendedInOneBuffer),
  351. ("testNextMessageReturnsNilWhenNoBytesAppended", testNextMessageReturnsNilWhenNoBytesAppended),
  352. ("testNextMessageReturnsNilWhenNoMessageBytesAreAvailable", testNextMessageReturnsNilWhenNoMessageBytesAreAvailable),
  353. ("testNextMessageReturnsNilWhenNoMessageLengthIsAvailable", testNextMessageReturnsNilWhenNoMessageLengthIsAvailable),
  354. ("testNextMessageReturnsNilWhenNotAllMessageBytesAreAvailable", testNextMessageReturnsNilWhenNotAllMessageBytesAreAvailable),
  355. ("testNextMessageReturnsNilWhenNotAllMessageLengthIsAvailable", testNextMessageReturnsNilWhenNotAllMessageLengthIsAvailable),
  356. ("testNextMessageThrowsWhenCompressionFlagIsSetButNotExpected", testNextMessageThrowsWhenCompressionFlagIsSetButNotExpected),
  357. ("testNextMessageThrowsWhenCompressionMechanismIsNotSupported", testNextMessageThrowsWhenCompressionMechanismIsNotSupported),
  358. ("testNextMessageWhenMultipleMessagesAreBuffered", testNextMessageWhenMultipleMessagesAreBuffered),
  359. ]
  360. }
  361. extension PlatformSupportTests {
  362. // DO NOT MODIFY: This is autogenerated, use:
  363. // `swift test --generate-linuxmain`
  364. // to regenerate.
  365. static let __allTests__PlatformSupportTests = [
  366. ("testMakeClientBootstrapReturnsClientBootstrapForEventLoop", testMakeClientBootstrapReturnsClientBootstrapForEventLoop),
  367. ("testMakeClientBootstrapReturnsClientBootstrapForMultiThreadedGroup", testMakeClientBootstrapReturnsClientBootstrapForMultiThreadedGroup),
  368. ("testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForNIOTSGroup", testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForNIOTSGroup),
  369. ("testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForQoSEventLoop", testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForQoSEventLoop),
  370. ("testMakeEventLoopGroupReturnsMultiThreadedGroupForPosix", testMakeEventLoopGroupReturnsMultiThreadedGroupForPosix),
  371. ("testMakeEventLoopGroupReturnsNIOTSGroupForNetworkFramework", testMakeEventLoopGroupReturnsNIOTSGroupForNetworkFramework),
  372. ("testMakeServerBootstrapReturnsNIOTSListenerBootstrapForNIOTSGroup", testMakeServerBootstrapReturnsNIOTSListenerBootstrapForNIOTSGroup),
  373. ("testMakeServerBootstrapReturnsNIOTSListenerBootstrapForQoSEventLoop", testMakeServerBootstrapReturnsNIOTSListenerBootstrapForQoSEventLoop),
  374. ("testMakeServerBootstrapReturnsServerBootstrapForEventLoop", testMakeServerBootstrapReturnsServerBootstrapForEventLoop),
  375. ("testMakeServerBootstrapReturnsServerBootstrapForMultiThreadedGroup", testMakeServerBootstrapReturnsServerBootstrapForMultiThreadedGroup),
  376. ]
  377. }
  378. extension ServerDelayedThrowingTests {
  379. // DO NOT MODIFY: This is autogenerated, use:
  380. // `swift test --generate-linuxmain`
  381. // to regenerate.
  382. static let __allTests__ServerDelayedThrowingTests = [
  383. ("testBidirectionalStreaming", testBidirectionalStreaming),
  384. ("testClientStreaming", testClientStreaming),
  385. ("testServerStreaming", testServerStreaming),
  386. ("testUnary", testUnary),
  387. ]
  388. }
  389. extension ServerErrorTransformingTests {
  390. // DO NOT MODIFY: This is autogenerated, use:
  391. // `swift test --generate-linuxmain`
  392. // to regenerate.
  393. static let __allTests__ServerErrorTransformingTests = [
  394. ("testBidirectionalStreaming", testBidirectionalStreaming),
  395. ("testClientStreaming", testClientStreaming),
  396. ("testServerStreaming", testServerStreaming),
  397. ("testUnary", testUnary),
  398. ]
  399. }
  400. extension ServerThrowingTests {
  401. // DO NOT MODIFY: This is autogenerated, use:
  402. // `swift test --generate-linuxmain`
  403. // to regenerate.
  404. static let __allTests__ServerThrowingTests = [
  405. ("testBidirectionalStreaming", testBidirectionalStreaming),
  406. ("testClientStreaming", testClientStreaming),
  407. ("testServerStreaming", testServerStreaming),
  408. ("testUnary", testUnary),
  409. ]
  410. }
  411. extension ServerWebTests {
  412. // DO NOT MODIFY: This is autogenerated, use:
  413. // `swift test --generate-linuxmain`
  414. // to regenerate.
  415. static let __allTests__ServerWebTests = [
  416. ("testServerStreaming", testServerStreaming),
  417. ("testUnary", testUnary),
  418. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  419. ("testUnaryWithoutRequestMessage", testUnaryWithoutRequestMessage),
  420. ]
  421. }
  422. extension StreamingRequestClientCallTests {
  423. // DO NOT MODIFY: This is autogenerated, use:
  424. // `swift test --generate-linuxmain`
  425. // to regenerate.
  426. static let __allTests__StreamingRequestClientCallTests = [
  427. ("testSendMessages", testSendMessages),
  428. ]
  429. }
  430. public func __allTests() -> [XCTestCaseEntry] {
  431. return [
  432. testCase(AnyServiceClientTests.__allTests__AnyServiceClientTests),
  433. testCase(ClientCancellingTests.__allTests__ClientCancellingTests),
  434. testCase(ClientClosedChannelTests.__allTests__ClientClosedChannelTests),
  435. testCase(ClientConnectionBackoffTests.__allTests__ClientConnectionBackoffTests),
  436. testCase(ClientTLSFailureTests.__allTests__ClientTLSFailureTests),
  437. testCase(ClientTLSHostnameOverrideTests.__allTests__ClientTLSHostnameOverrideTests),
  438. testCase(ClientThrowingWhenServerReturningErrorTests.__allTests__ClientThrowingWhenServerReturningErrorTests),
  439. testCase(ClientTimeoutTests.__allTests__ClientTimeoutTests),
  440. testCase(ConnectionBackoffTests.__allTests__ConnectionBackoffTests),
  441. testCase(ConnectivityStateMonitorTests.__allTests__ConnectivityStateMonitorTests),
  442. testCase(FunctionalTestsAnonymousClient.__allTests__FunctionalTestsAnonymousClient),
  443. testCase(FunctionalTestsAnonymousClientNIOTS.__allTests__FunctionalTestsAnonymousClientNIOTS),
  444. testCase(FunctionalTestsInsecureTransport.__allTests__FunctionalTestsInsecureTransport),
  445. testCase(FunctionalTestsInsecureTransportNIOTS.__allTests__FunctionalTestsInsecureTransportNIOTS),
  446. testCase(FunctionalTestsMutualAuthentication.__allTests__FunctionalTestsMutualAuthentication),
  447. testCase(FunctionalTestsMutualAuthenticationNIOTS.__allTests__FunctionalTestsMutualAuthenticationNIOTS),
  448. testCase(GRPCChannelHandlerTests.__allTests__GRPCChannelHandlerTests),
  449. testCase(GRPCInsecureInteroperabilityTests.__allTests__GRPCInsecureInteroperabilityTests),
  450. testCase(GRPCSecureInteroperabilityTests.__allTests__GRPCSecureInteroperabilityTests),
  451. testCase(GRPCStatusCodeTests.__allTests__GRPCStatusCodeTests),
  452. testCase(GRPCStatusMessageMarshallerTests.__allTests__GRPCStatusMessageMarshallerTests),
  453. testCase(GRPCTypeSizeTests.__allTests__GRPCTypeSizeTests),
  454. testCase(HTTP1ToRawGRPCServerCodecTests.__allTests__HTTP1ToRawGRPCServerCodecTests),
  455. testCase(ImmediatelyFailingProviderTests.__allTests__ImmediatelyFailingProviderTests),
  456. testCase(LengthPrefixedMessageReaderTests.__allTests__LengthPrefixedMessageReaderTests),
  457. testCase(PlatformSupportTests.__allTests__PlatformSupportTests),
  458. testCase(ServerDelayedThrowingTests.__allTests__ServerDelayedThrowingTests),
  459. testCase(ServerErrorTransformingTests.__allTests__ServerErrorTransformingTests),
  460. testCase(ServerThrowingTests.__allTests__ServerThrowingTests),
  461. testCase(ServerWebTests.__allTests__ServerWebTests),
  462. testCase(StreamingRequestClientCallTests.__allTests__StreamingRequestClientCallTests),
  463. ]
  464. }
  465. #endif