XCTestManifests.swift 24 KB

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