@@ -395,7 +395,7 @@ final class RunnerTests: XCTestCase {
395
395
let runner = await Runner ( configuration: configuration)
396
396
let plan = runner. plan
397
397
398
- XCTAssertEqual ( plan. steps. count, 0 )
398
+ XCTAssertEqual ( plan. steps. count, 1 )
399
399
}
400
400
}
401
401
@@ -501,7 +501,7 @@ final class RunnerTests: XCTestCase {
501
501
502
502
func testPoundIfTrueTestFunctionRuns( ) async throws {
503
503
let testStarted = expectation ( description: " Test started " )
504
- testStarted. expectedFulfillmentCount = 4
504
+ testStarted. expectedFulfillmentCount = 5
505
505
var configuration = Configuration ( )
506
506
configuration. eventHandler = { event, _ in
507
507
if case . testStarted = event. kind {
@@ -522,7 +522,7 @@ final class RunnerTests: XCTestCase {
522
522
523
523
func testPoundIfFalseTestFunctionDoesNotRun( ) async throws {
524
524
let testStarted = expectation ( description: " Test started " )
525
- testStarted. expectedFulfillmentCount = 2
525
+ testStarted. expectedFulfillmentCount = 3
526
526
var configuration = Configuration ( )
527
527
configuration. eventHandler = { event, _ in
528
528
if case . testStarted = event. kind {
@@ -545,7 +545,7 @@ final class RunnerTests: XCTestCase {
545
545
546
546
func testPoundIfFalseElseTestFunctionRuns( ) async throws {
547
547
let testStarted = expectation ( description: " Test started " )
548
- testStarted. expectedFulfillmentCount = 4
548
+ testStarted. expectedFulfillmentCount = 5
549
549
var configuration = Configuration ( )
550
550
configuration. eventHandler = { event, _ in
551
551
if case . testStarted = event. kind {
@@ -568,7 +568,7 @@ final class RunnerTests: XCTestCase {
568
568
569
569
func testPoundIfFalseElseIfTestFunctionRuns( ) async throws {
570
570
let testStarted = expectation ( description: " Test started " )
571
- testStarted. expectedFulfillmentCount = 4
571
+ testStarted. expectedFulfillmentCount = 5
572
572
var configuration = Configuration ( )
573
573
configuration. eventHandler = { event, _ in
574
574
if case . testStarted = event. kind {
@@ -606,9 +606,9 @@ final class RunnerTests: XCTestCase {
606
606
func testNoasyncTestsAreCallable( ) async throws {
607
607
let testStarted = expectation ( description: " Test started " )
608
608
#if !SWT_NO_GLOBAL_ACTORS
609
- testStarted. expectedFulfillmentCount = 6
609
+ testStarted. expectedFulfillmentCount = 7
610
610
#else
611
- testStarted. expectedFulfillmentCount = 5
611
+ testStarted. expectedFulfillmentCount = 6
612
612
#endif
613
613
var configuration = Configuration ( )
614
614
configuration. eventHandler = { event, _ in
@@ -681,10 +681,10 @@ final class RunnerTests: XCTestCase {
681
681
let testStarted = expectation ( description: " Test started " )
682
682
let testSkipped = expectation ( description: " Test skipped " )
683
683
#if SWT_TARGET_OS_APPLE
684
- testStarted. expectedFulfillmentCount = 4
684
+ testStarted. expectedFulfillmentCount = 5
685
685
testSkipped. expectedFulfillmentCount = 8
686
686
#else
687
- testStarted. expectedFulfillmentCount = 2
687
+ testStarted. expectedFulfillmentCount = 3
688
688
testSkipped. expectedFulfillmentCount = 2
689
689
#endif
690
690
var configuration = Configuration ( )
@@ -782,7 +782,7 @@ final class RunnerTests: XCTestCase {
782
782
func testAvailableWithSwiftVersion( ) async throws {
783
783
let testStarted = expectation ( description: " Test started " )
784
784
let testSkipped = expectation ( description: " Test skipped " )
785
- testStarted. expectedFulfillmentCount = 3
785
+ testStarted. expectedFulfillmentCount = 4
786
786
testSkipped. expectedFulfillmentCount = 2
787
787
var configuration = Configuration ( )
788
788
configuration. eventHandler = { event, _ in
@@ -808,7 +808,7 @@ final class RunnerTests: XCTestCase {
808
808
}
809
809
810
810
let testStarted = expectation ( description: " Test started " )
811
- testStarted. expectedFulfillmentCount = 2
811
+ testStarted. expectedFulfillmentCount = 3
812
812
var configuration = Configuration ( )
813
813
configuration. eventHandler = { event, _ in
814
814
if case . testStarted = event. kind {
@@ -919,9 +919,9 @@ final class RunnerTests: XCTestCase {
919
919
let testStarted = expectation ( description: " Test started " )
920
920
let testSkipped = expectation ( description: " Test skipped " )
921
921
#if SWT_TARGET_OS_APPLE
922
- testStarted. expectedFulfillmentCount = 4
922
+ testStarted. expectedFulfillmentCount = 5
923
923
#else
924
- testStarted. expectedFulfillmentCount = 3
924
+ testStarted. expectedFulfillmentCount = 4
925
925
#endif
926
926
testSkipped. isInverted = true
927
927
var configuration = Configuration ( )
0 commit comments