@@ -67,8 +67,9 @@ public typealias __XCTestCompatibleSelector = Never
67
67
/// ## See Also
68
68
///
69
69
/// - <doc:OrganizingTests>
70
+ @attached ( member) @attached ( peer)
70
71
@_documentation ( visibility: private)
71
- @ attached ( member ) @ attached ( peer ) public macro Suite(
72
+ public macro Suite(
72
73
_ traits: any SuiteTrait ...
73
74
) = #externalMacro( module: " TestingMacros " , type: " SuiteDeclarationMacro " )
74
75
@@ -123,8 +124,9 @@ extension Test {
123
124
/// ## See Also
124
125
///
125
126
/// - ``Test(_:_:)``
127
+ @attached ( peer)
126
128
@_documentation ( visibility: private)
127
- @ attached ( peer ) public macro Test(
129
+ public macro Test(
128
130
_ traits: any TestTrait ...
129
131
) = #externalMacro( module: " TestingMacros " , type: " TestDeclarationMacro " )
130
132
@@ -192,8 +194,9 @@ extension [Test.__Parameter] {
192
194
/// ## See Also
193
195
///
194
196
/// - ``Test(_:arguments:)-35dat``
197
+ @attached ( peer)
195
198
@_documentation ( visibility: private)
196
- @ attached ( peer ) public macro Test< C> (
199
+ public macro Test< C> (
197
200
_ traits: any TestTrait ... ,
198
201
arguments collection: C
199
202
) = #externalMacro( module: " TestingMacros " , type: " TestDeclarationMacro " ) where C: Collection & Sendable , C. Element: Sendable
@@ -268,8 +271,9 @@ extension Test {
268
271
/// ## See Also
269
272
///
270
273
/// - <doc:DefiningTests>
274
+ @attached ( peer)
271
275
@_documentation ( visibility: private)
272
- @ attached ( peer ) public macro Test< C1, C2> (
276
+ public macro Test< C1, C2> (
273
277
_ traits: any TestTrait ... ,
274
278
arguments collection1: C1 , _ collection2: C2
275
279
) = #externalMacro( module: " TestingMacros " , type: " TestDeclarationMacro " ) where C1: Collection & Sendable , C1. Element: Sendable , C2: Collection & Sendable , C2. Element: Sendable
@@ -321,8 +325,9 @@ extension Test {
321
325
/// ## See Also
322
326
///
323
327
/// - <doc:DefiningTests>
328
+ @attached ( peer)
324
329
@_documentation ( visibility: private)
325
- @ attached ( peer ) public macro Test< C1, C2> (
330
+ public macro Test< C1, C2> (
326
331
_ traits: any TestTrait ... ,
327
332
arguments zippedCollections: Zip2Sequence < C1 , C2 >
328
333
) = #externalMacro( module: " TestingMacros " , type: " TestDeclarationMacro " ) where C1: Collection & Sendable , C1. Element: Sendable , C2: Collection & Sendable , C2. Element: Sendable
0 commit comments