@@ -16,7 +16,6 @@ public struct Event: Sendable {
16
16
/// A test run started.
17
17
///
18
18
/// This event is the first event posted after ``Runner/run()`` is called.
19
- @_spi ( ExperimentalTestRunning)
20
19
case runStarted
21
20
22
21
/// An iteration of the test run started.
@@ -30,7 +29,6 @@ public struct Event: Sendable {
30
29
/// By default, a test plan runs for one iteration, but the
31
30
/// ``Configuration/repetitionPolicy-swift.property`` property can be set to
32
31
/// allow for more iterations.
33
- @_spi ( ExperimentalTestRunning)
34
32
indirect case iterationStarted( _ index: Int )
35
33
36
34
/// A step in the runner plan started.
@@ -42,7 +40,6 @@ public struct Event: Sendable {
42
40
/// ``Runner/Plan/Step``. Processing this step may result in its associated
43
41
/// ``Test`` being run, skipped, or another action, so this event will only
44
42
/// be followed by a ``testStarted`` event if the step's test is run.
45
- @_spi ( ExperimentalTestRunning)
46
43
indirect case planStepStarted( _ step: Runner . Plan . Step )
47
44
48
45
/// A test started.
@@ -112,7 +109,6 @@ public struct Event: Sendable {
112
109
///
113
110
/// This event is posted when a ``Runner`` finishes processing a
114
111
/// ``Runner/Plan/Step``.
115
- @_spi ( ExperimentalTestRunning)
116
112
indirect case planStepEnded( Runner . Plan . Step )
117
113
118
114
/// An iteration of the test run ended.
@@ -126,13 +122,11 @@ public struct Event: Sendable {
126
122
/// By default, a test plan runs for one iteration, but the
127
123
/// ``Configuration/repetitionPolicy-swift.property`` property can be set to
128
124
/// allow for more iterations.
129
- @_spi ( ExperimentalTestRunning)
130
125
indirect case iterationEnded( _ index: Int )
131
126
132
127
/// A test run ended.
133
128
///
134
129
/// This event is the last event posted before ``Runner/run()`` returns.
135
- @_spi ( ExperimentalTestRunning)
136
130
case runEnded
137
131
}
138
132
@@ -323,7 +317,6 @@ extension Event.Kind {
323
317
/// A test run started.
324
318
///
325
319
/// This is the first event posted after ``Runner/run()`` is called.
326
- @_spi ( ExperimentalTestRunning)
327
320
case runStarted
328
321
329
322
/// An iteration of the test run started.
@@ -337,7 +330,6 @@ extension Event.Kind {
337
330
/// By default, a test plan runs for one iteration, but the
338
331
/// ``Configuration/repetitionPolicy-swift.property`` property can be set to
339
332
/// allow for more iterations.
340
- @_spi ( ExperimentalTestRunning)
341
333
indirect case iterationStarted( _ index: Int )
342
334
343
335
/// A step in the runner plan started.
@@ -349,7 +341,6 @@ extension Event.Kind {
349
341
/// ``Runner/Plan/Step``. Processing this step may result in its associated
350
342
/// ``Test`` being run, skipped, or another action, so this event will only
351
343
/// be followed by a ``testStarted`` event if the step's test is run.
352
- @_spi ( ExperimentalTestRunning)
353
344
case planStepStarted
354
345
355
346
/// A test started.
@@ -401,7 +392,6 @@ extension Event.Kind {
401
392
///
402
393
/// This is posted when a ``Runner`` finishes processing a
403
394
/// ``Runner/Plan/Step``.
404
- @_spi ( ExperimentalTestRunning)
405
395
case planStepEnded
406
396
407
397
/// An iteration of the test run ended.
@@ -415,13 +405,11 @@ extension Event.Kind {
415
405
/// By default, a test plan runs for one iteration, but the
416
406
/// ``Configuration/repetitionPolicy-swift.property`` property can be set to
417
407
/// allow for more iterations.
418
- @_spi ( ExperimentalTestRunning)
419
408
indirect case iterationEnded( _ index: Int )
420
409
421
410
/// A test run ended.
422
411
///
423
412
/// This is the last event posted before ``Runner/run()`` returns.
424
- @_spi ( ExperimentalTestRunning)
425
413
case runEnded
426
414
427
415
/// Snapshots an ``Event.Kind``.
0 commit comments