XCTestManifests.swift 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  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. ("testClientEventuallyTimesOut", testClientEventuallyTimesOut),
  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 ClientThrowingWhenServerReturningErrorTests {
  60. // DO NOT MODIFY: This is autogenerated, use:
  61. // `swift test --generate-linuxmain`
  62. // to regenerate.
  63. static let __allTests__ClientThrowingWhenServerReturningErrorTests = [
  64. ("testBidirectionalStreaming", testBidirectionalStreaming),
  65. ("testClientStreaming", testClientStreaming),
  66. ("testServerStreaming", testServerStreaming),
  67. ("testUnary", testUnary),
  68. ]
  69. }
  70. extension ClientTimeoutTests {
  71. // DO NOT MODIFY: This is autogenerated, use:
  72. // `swift test --generate-linuxmain`
  73. // to regenerate.
  74. static let __allTests__ClientTimeoutTests = [
  75. ("testBidirectionalStreamingTimeoutAfterSending", testBidirectionalStreamingTimeoutAfterSending),
  76. ("testBidirectionalStreamingTimeoutBeforeSending", testBidirectionalStreamingTimeoutBeforeSending),
  77. ("testClientStreamingTimeoutAfterSending", testClientStreamingTimeoutAfterSending),
  78. ("testClientStreamingTimeoutBeforeSending", testClientStreamingTimeoutBeforeSending),
  79. ("testServerStreamingTimeoutAfterSending", testServerStreamingTimeoutAfterSending),
  80. ("testUnaryTimeoutAfterSending", testUnaryTimeoutAfterSending),
  81. ]
  82. }
  83. extension ConnectionBackoffTests {
  84. // DO NOT MODIFY: This is autogenerated, use:
  85. // `swift test --generate-linuxmain`
  86. // to regenerate.
  87. static let __allTests__ConnectionBackoffTests = [
  88. ("testBackoffDoesNotExceedMaximum", testBackoffDoesNotExceedMaximum),
  89. ("testBackoffWithJitter", testBackoffWithJitter),
  90. ("testBackoffWithNoJitter", testBackoffWithNoJitter),
  91. ("testConnectionTimeoutAlwaysGreatherThanOrEqualToMinimum", testConnectionTimeoutAlwaysGreatherThanOrEqualToMinimum),
  92. ("testExpectedValuesWithNoJitter", testExpectedValuesWithNoJitter),
  93. ]
  94. }
  95. extension FunctionalTestsAnonymousClient {
  96. // DO NOT MODIFY: This is autogenerated, use:
  97. // `swift test --generate-linuxmain`
  98. // to regenerate.
  99. static let __allTests__FunctionalTestsAnonymousClient = [
  100. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  101. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  102. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  103. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  104. ("testClientStreaming", testClientStreaming),
  105. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  106. ("testServerStreaming", testServerStreaming),
  107. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  108. ("testUnary", testUnary),
  109. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  110. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  111. ("testUnaryWithLargeData", testUnaryWithLargeData),
  112. ]
  113. }
  114. extension FunctionalTestsAnonymousClientNIOTS {
  115. // DO NOT MODIFY: This is autogenerated, use:
  116. // `swift test --generate-linuxmain`
  117. // to regenerate.
  118. static let __allTests__FunctionalTestsAnonymousClientNIOTS = [
  119. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  120. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  121. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  122. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  123. ("testClientStreaming", testClientStreaming),
  124. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  125. ("testServerStreaming", testServerStreaming),
  126. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  127. ("testUnary", testUnary),
  128. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  129. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  130. ("testUnaryWithLargeData", testUnaryWithLargeData),
  131. ]
  132. }
  133. extension FunctionalTestsInsecureTransport {
  134. // DO NOT MODIFY: This is autogenerated, use:
  135. // `swift test --generate-linuxmain`
  136. // to regenerate.
  137. static let __allTests__FunctionalTestsInsecureTransport = [
  138. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  139. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  140. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  141. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  142. ("testClientStreaming", testClientStreaming),
  143. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  144. ("testServerStreaming", testServerStreaming),
  145. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  146. ("testUnary", testUnary),
  147. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  148. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  149. ("testUnaryWithLargeData", testUnaryWithLargeData),
  150. ]
  151. }
  152. extension FunctionalTestsInsecureTransportNIOTS {
  153. // DO NOT MODIFY: This is autogenerated, use:
  154. // `swift test --generate-linuxmain`
  155. // to regenerate.
  156. static let __allTests__FunctionalTestsInsecureTransportNIOTS = [
  157. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  158. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  159. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  160. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  161. ("testClientStreaming", testClientStreaming),
  162. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  163. ("testServerStreaming", testServerStreaming),
  164. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  165. ("testUnary", testUnary),
  166. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  167. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  168. ("testUnaryWithLargeData", testUnaryWithLargeData),
  169. ]
  170. }
  171. extension FunctionalTestsMutualAuthentication {
  172. // DO NOT MODIFY: This is autogenerated, use:
  173. // `swift test --generate-linuxmain`
  174. // to regenerate.
  175. static let __allTests__FunctionalTestsMutualAuthentication = [
  176. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  177. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  178. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  179. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  180. ("testClientStreaming", testClientStreaming),
  181. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  182. ("testServerStreaming", testServerStreaming),
  183. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  184. ("testUnary", testUnary),
  185. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  186. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  187. ("testUnaryWithLargeData", testUnaryWithLargeData),
  188. ]
  189. }
  190. extension FunctionalTestsMutualAuthenticationNIOTS {
  191. // DO NOT MODIFY: This is autogenerated, use:
  192. // `swift test --generate-linuxmain`
  193. // to regenerate.
  194. static let __allTests__FunctionalTestsMutualAuthenticationNIOTS = [
  195. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  196. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  197. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  198. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  199. ("testClientStreaming", testClientStreaming),
  200. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  201. ("testServerStreaming", testServerStreaming),
  202. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  203. ("testUnary", testUnary),
  204. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  205. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  206. ("testUnaryWithLargeData", testUnaryWithLargeData),
  207. ]
  208. }
  209. extension GRPCChannelHandlerTests {
  210. // DO NOT MODIFY: This is autogenerated, use:
  211. // `swift test --generate-linuxmain`
  212. // to regenerate.
  213. static let __allTests__GRPCChannelHandlerTests = [
  214. ("testImplementedMethodReturnsHeadersMessageAndStatus", testImplementedMethodReturnsHeadersMessageAndStatus),
  215. ("testImplementedMethodReturnsStatusForBadlyFormedProto", testImplementedMethodReturnsStatusForBadlyFormedProto),
  216. ("testUnimplementedMethodReturnsUnimplementedStatus", testUnimplementedMethodReturnsUnimplementedStatus),
  217. ]
  218. }
  219. extension GRPCInsecureInteroperabilityTests {
  220. // DO NOT MODIFY: This is autogenerated, use:
  221. // `swift test --generate-linuxmain`
  222. // to regenerate.
  223. static let __allTests__GRPCInsecureInteroperabilityTests = [
  224. ("testCacheableUnary", testCacheableUnary),
  225. ("testCancelAfterBegin", testCancelAfterBegin),
  226. ("testCancelAfterFirstResponse", testCancelAfterFirstResponse),
  227. ("testClientStreaming", testClientStreaming),
  228. ("testCustomMetadata", testCustomMetadata),
  229. ("testEmptyStream", testEmptyStream),
  230. ("testEmptyUnary", testEmptyUnary),
  231. ("testLargeUnary", testLargeUnary),
  232. ("testPingPong", testPingPong),
  233. ("testServerStreaming", testServerStreaming),
  234. ("testSpecialStatusAndMessage", testSpecialStatusAndMessage),
  235. ("testStatusCodeAndMessage", testStatusCodeAndMessage),
  236. ("testTimeoutOnSleepingServer", testTimeoutOnSleepingServer),
  237. ("testUnimplementedMethod", testUnimplementedMethod),
  238. ("testUnimplementedService", testUnimplementedService),
  239. ]
  240. }
  241. extension GRPCSecureInteroperabilityTests {
  242. // DO NOT MODIFY: This is autogenerated, use:
  243. // `swift test --generate-linuxmain`
  244. // to regenerate.
  245. static let __allTests__GRPCSecureInteroperabilityTests = [
  246. ("testCacheableUnary", testCacheableUnary),
  247. ("testCancelAfterBegin", testCancelAfterBegin),
  248. ("testCancelAfterFirstResponse", testCancelAfterFirstResponse),
  249. ("testClientStreaming", testClientStreaming),
  250. ("testCustomMetadata", testCustomMetadata),
  251. ("testEmptyStream", testEmptyStream),
  252. ("testEmptyUnary", testEmptyUnary),
  253. ("testLargeUnary", testLargeUnary),
  254. ("testPingPong", testPingPong),
  255. ("testServerStreaming", testServerStreaming),
  256. ("testSpecialStatusAndMessage", testSpecialStatusAndMessage),
  257. ("testStatusCodeAndMessage", testStatusCodeAndMessage),
  258. ("testTimeoutOnSleepingServer", testTimeoutOnSleepingServer),
  259. ("testUnimplementedMethod", testUnimplementedMethod),
  260. ("testUnimplementedService", testUnimplementedService),
  261. ]
  262. }
  263. extension GRPCStatusCodeTests {
  264. // DO NOT MODIFY: This is autogenerated, use:
  265. // `swift test --generate-linuxmain`
  266. // to regenerate.
  267. static let __allTests__GRPCStatusCodeTests = [
  268. ("testBadGateway", testBadGateway),
  269. ("testBadRequest", testBadRequest),
  270. ("testForbidden", testForbidden),
  271. ("testGatewayTimeout", testGatewayTimeout),
  272. ("testNotFound", testNotFound),
  273. ("testServiceUnavailable", testServiceUnavailable),
  274. ("testStatusCodeAndMessageAreRespectedForNon200Responses", testStatusCodeAndMessageAreRespectedForNon200Responses),
  275. ("testTooManyRequests", testTooManyRequests),
  276. ("testUnauthorized", testUnauthorized),
  277. ]
  278. }
  279. extension GRPCStatusMessageMarshallerTests {
  280. // DO NOT MODIFY: This is autogenerated, use:
  281. // `swift test --generate-linuxmain`
  282. // to regenerate.
  283. static let __allTests__GRPCStatusMessageMarshallerTests = [
  284. ("testASCIIMarshallingAndUnmarshalling", testASCIIMarshallingAndUnmarshalling),
  285. ("testPercentMarshallingAndUnmarshalling", testPercentMarshallingAndUnmarshalling),
  286. ("testUnicodeMarshalling", testUnicodeMarshalling),
  287. ]
  288. }
  289. extension GRPCTypeSizeTests {
  290. // DO NOT MODIFY: This is autogenerated, use:
  291. // `swift test --generate-linuxmain`
  292. // to regenerate.
  293. static let __allTests__GRPCTypeSizeTests = [
  294. ("testGRPCClientRequestPart", testGRPCClientRequestPart),
  295. ("testGRPCClientResponsePart", testGRPCClientResponsePart),
  296. ("testGRPCStatus", testGRPCStatus),
  297. ("testRawGRPCClientRequestPart", testRawGRPCClientRequestPart),
  298. ("testRawGRPCClientResponsePart", testRawGRPCClientResponsePart),
  299. ]
  300. }
  301. extension HTTP1ToRawGRPCServerCodecTests {
  302. // DO NOT MODIFY: This is autogenerated, use:
  303. // `swift test --generate-linuxmain`
  304. // to regenerate.
  305. static let __allTests__HTTP1ToRawGRPCServerCodecTests = [
  306. ("testInternalErrorStatusIsReturnedIfMessageCannotBeDeserialized", testInternalErrorStatusIsReturnedIfMessageCannotBeDeserialized),
  307. ("testInternalErrorStatusIsReturnedWhenSendingTrailersInRequest", testInternalErrorStatusIsReturnedWhenSendingTrailersInRequest),
  308. ("testInternalErrorStatusReturnedWhenCompressionFlagIsSet", testInternalErrorStatusReturnedWhenCompressionFlagIsSet),
  309. ("testMessageCanBeSentAcrossMultipleByteBuffers", testMessageCanBeSentAcrossMultipleByteBuffers),
  310. ("testOnlyOneStatusIsReturned", testOnlyOneStatusIsReturned),
  311. ]
  312. }
  313. extension LengthPrefixedMessageReaderTests {
  314. // DO NOT MODIFY: This is autogenerated, use:
  315. // `swift test --generate-linuxmain`
  316. // to regenerate.
  317. static let __allTests__LengthPrefixedMessageReaderTests = [
  318. ("testAppendReadsAllBytes", testAppendReadsAllBytes),
  319. ("testNextMessageDeliveredAcrossMultipleByteBuffers", testNextMessageDeliveredAcrossMultipleByteBuffers),
  320. ("testNextMessageDoesNotThrowWhenCompressionFlagIsExpectedButNotSet", testNextMessageDoesNotThrowWhenCompressionFlagIsExpectedButNotSet),
  321. ("testNextMessageReturnsMessageForZeroLengthMessage", testNextMessageReturnsMessageForZeroLengthMessage),
  322. ("testNextMessageReturnsMessageIsAppendedInOneBuffer", testNextMessageReturnsMessageIsAppendedInOneBuffer),
  323. ("testNextMessageReturnsNilWhenNoBytesAppended", testNextMessageReturnsNilWhenNoBytesAppended),
  324. ("testNextMessageReturnsNilWhenNoMessageBytesAreAvailable", testNextMessageReturnsNilWhenNoMessageBytesAreAvailable),
  325. ("testNextMessageReturnsNilWhenNoMessageLengthIsAvailable", testNextMessageReturnsNilWhenNoMessageLengthIsAvailable),
  326. ("testNextMessageReturnsNilWhenNotAllMessageBytesAreAvailable", testNextMessageReturnsNilWhenNotAllMessageBytesAreAvailable),
  327. ("testNextMessageReturnsNilWhenNotAllMessageLengthIsAvailable", testNextMessageReturnsNilWhenNotAllMessageLengthIsAvailable),
  328. ("testNextMessageThrowsWhenCompressionFlagIsSetButNotExpected", testNextMessageThrowsWhenCompressionFlagIsSetButNotExpected),
  329. ("testNextMessageThrowsWhenCompressionMechanismIsNotSupported", testNextMessageThrowsWhenCompressionMechanismIsNotSupported),
  330. ("testNextMessageWhenMultipleMessagesAreBuffered", testNextMessageWhenMultipleMessagesAreBuffered),
  331. ]
  332. }
  333. extension ServerDelayedThrowingTests {
  334. // DO NOT MODIFY: This is autogenerated, use:
  335. // `swift test --generate-linuxmain`
  336. // to regenerate.
  337. static let __allTests__ServerDelayedThrowingTests = [
  338. ("testBidirectionalStreaming", testBidirectionalStreaming),
  339. ("testClientStreaming", testClientStreaming),
  340. ("testServerStreaming", testServerStreaming),
  341. ("testUnary", testUnary),
  342. ]
  343. }
  344. extension ServerErrorTransformingTests {
  345. // DO NOT MODIFY: This is autogenerated, use:
  346. // `swift test --generate-linuxmain`
  347. // to regenerate.
  348. static let __allTests__ServerErrorTransformingTests = [
  349. ("testBidirectionalStreaming", testBidirectionalStreaming),
  350. ("testClientStreaming", testClientStreaming),
  351. ("testServerStreaming", testServerStreaming),
  352. ("testUnary", testUnary),
  353. ]
  354. }
  355. extension ServerThrowingTests {
  356. // DO NOT MODIFY: This is autogenerated, use:
  357. // `swift test --generate-linuxmain`
  358. // to regenerate.
  359. static let __allTests__ServerThrowingTests = [
  360. ("testBidirectionalStreaming", testBidirectionalStreaming),
  361. ("testClientStreaming", testClientStreaming),
  362. ("testServerStreaming", testServerStreaming),
  363. ("testUnary", testUnary),
  364. ]
  365. }
  366. extension ServerWebTests {
  367. // DO NOT MODIFY: This is autogenerated, use:
  368. // `swift test --generate-linuxmain`
  369. // to regenerate.
  370. static let __allTests__ServerWebTests = [
  371. ("testServerStreaming", testServerStreaming),
  372. ("testUnary", testUnary),
  373. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  374. ("testUnaryWithoutRequestMessage", testUnaryWithoutRequestMessage),
  375. ]
  376. }
  377. public func __allTests() -> [XCTestCaseEntry] {
  378. return [
  379. testCase(AnyServiceClientTests.__allTests__AnyServiceClientTests),
  380. testCase(ClientCancellingTests.__allTests__ClientCancellingTests),
  381. testCase(ClientClosedChannelTests.__allTests__ClientClosedChannelTests),
  382. testCase(ClientConnectionBackoffTests.__allTests__ClientConnectionBackoffTests),
  383. testCase(ClientTLSFailureTests.__allTests__ClientTLSFailureTests),
  384. testCase(ClientThrowingWhenServerReturningErrorTests.__allTests__ClientThrowingWhenServerReturningErrorTests),
  385. testCase(ClientTimeoutTests.__allTests__ClientTimeoutTests),
  386. testCase(ConnectionBackoffTests.__allTests__ConnectionBackoffTests),
  387. testCase(FunctionalTestsAnonymousClient.__allTests__FunctionalTestsAnonymousClient),
  388. testCase(FunctionalTestsAnonymousClientNIOTS.__allTests__FunctionalTestsAnonymousClientNIOTS),
  389. testCase(FunctionalTestsInsecureTransport.__allTests__FunctionalTestsInsecureTransport),
  390. testCase(FunctionalTestsInsecureTransportNIOTS.__allTests__FunctionalTestsInsecureTransportNIOTS),
  391. testCase(FunctionalTestsMutualAuthentication.__allTests__FunctionalTestsMutualAuthentication),
  392. testCase(FunctionalTestsMutualAuthenticationNIOTS.__allTests__FunctionalTestsMutualAuthenticationNIOTS),
  393. testCase(GRPCChannelHandlerTests.__allTests__GRPCChannelHandlerTests),
  394. testCase(GRPCInsecureInteroperabilityTests.__allTests__GRPCInsecureInteroperabilityTests),
  395. testCase(GRPCSecureInteroperabilityTests.__allTests__GRPCSecureInteroperabilityTests),
  396. testCase(GRPCStatusCodeTests.__allTests__GRPCStatusCodeTests),
  397. testCase(GRPCStatusMessageMarshallerTests.__allTests__GRPCStatusMessageMarshallerTests),
  398. testCase(GRPCTypeSizeTests.__allTests__GRPCTypeSizeTests),
  399. testCase(HTTP1ToRawGRPCServerCodecTests.__allTests__HTTP1ToRawGRPCServerCodecTests),
  400. testCase(LengthPrefixedMessageReaderTests.__allTests__LengthPrefixedMessageReaderTests),
  401. testCase(ServerDelayedThrowingTests.__allTests__ServerDelayedThrowingTests),
  402. testCase(ServerErrorTransformingTests.__allTests__ServerErrorTransformingTests),
  403. testCase(ServerThrowingTests.__allTests__ServerThrowingTests),
  404. testCase(ServerWebTests.__allTests__ServerWebTests),
  405. ]
  406. }
  407. #endif