XCTestManifests.swift 23 KB

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