@@ -220,14 +220,14 @@ public macro Test<C>(
220
220
/// During testing, the associated test function is called once for each element
221
221
/// in `collection`.
222
222
///
223
+ /// @Comment {
224
+ /// - Bug: The testing library should support variadic generics.
225
+ /// ([103416861](rdar://103416861))
226
+ /// }
227
+ ///
223
228
/// ## See Also
224
229
///
225
230
/// - <doc:DefiningTests>
226
- //
227
- // @Comment {
228
- // - Bug: The testing library should support variadic generics.
229
- // ([103416861](rdar://103416861))
230
- // }
231
231
@attached ( peer) public macro Test< C> (
232
232
_ displayName: _const String? = nil ,
233
233
_ traits: any TestTrait ... ,
@@ -273,14 +273,14 @@ extension Test {
273
273
/// During testing, the associated test function is called once for each pair of
274
274
/// elements in `collection1` and `collection2`.
275
275
///
276
+ /// @Comment {
277
+ /// - Bug: The testing library should support variadic generics.
278
+ /// ([103416861](rdar://103416861))
279
+ /// }
280
+ ///
276
281
/// ## See Also
277
282
///
278
283
/// - <doc:DefiningTests>
279
- //
280
- // @Comment {
281
- // - Bug: The testing library should support variadic generics.
282
- // ([103416861](rdar://103416861))
283
- // }
284
284
@attached ( peer)
285
285
@_documentation ( visibility: private)
286
286
public macro Test< C1, C2> (
@@ -301,14 +301,14 @@ public macro Test<C1, C2>(
301
301
/// During testing, the associated test function is called once for each pair of
302
302
/// elements in `collection1` and `collection2`.
303
303
///
304
+ /// @Comment {
305
+ /// - Bug: The testing library should support variadic generics.
306
+ /// ([103416861](rdar://103416861))
307
+ /// }
308
+ ///
304
309
/// ## See Also
305
310
///
306
311
/// - <doc:DefiningTests>
307
- //
308
- // @Comment {
309
- // - Bug: The testing library should support variadic generics.
310
- // ([103416861](rdar://103416861))
311
- // }
312
312
@attached ( peer) public macro Test< C1, C2> (
313
313
_ displayName: _const String? = nil ,
314
314
_ traits: any TestTrait ... ,
@@ -327,14 +327,14 @@ public macro Test<C1, C2>(
327
327
/// During testing, the associated test function is called once for each element
328
328
/// in `zippedCollections`.
329
329
///
330
+ /// @Comment {
331
+ /// - Bug: The testing library should support variadic generics.
332
+ /// ([103416861](rdar://103416861))
333
+ /// }
334
+ ///
330
335
/// ## See Also
331
336
///
332
337
/// - <doc:DefiningTests>
333
- //
334
- // @Comment {
335
- // - Bug: The testing library should support variadic generics.
336
- // ([103416861](rdar://103416861))
337
- // }
338
338
@attached ( peer)
339
339
@_documentation ( visibility: private)
340
340
public macro Test< C1, C2> (
@@ -355,14 +355,14 @@ public macro Test<C1, C2>(
355
355
/// During testing, the associated test function is called once for each element
356
356
/// in `zippedCollections`.
357
357
///
358
+ /// @Comment {
359
+ /// - Bug: The testing library should support variadic generics.
360
+ /// ([103416861](rdar://103416861))
361
+ /// }
362
+ ///
358
363
/// ## See Also
359
364
///
360
365
/// - <doc:DefiningTests>
361
- //
362
- // @Comment {
363
- // - Bug: The testing library should support variadic generics.
364
- // ([103416861](rdar://103416861))
365
- // }
366
366
@attached ( peer) public macro Test< C1, C2> (
367
367
_ displayName: _const String? = nil ,
368
368
_ traits: any TestTrait ... ,
0 commit comments