@@ -1424,7 +1424,7 @@ public function testDoNotFailOnDeprecationMayNotBeConfigured(): void
1424
1424
1425
1425
$ this ->expectException (Exception::class);
1426
1426
1427
- $ configuration ->failOnDeprecation ();
1427
+ $ configuration ->doNotFailOnDeprecation ();
1428
1428
}
1429
1429
1430
1430
#[TestDox('--do-not-fail-on-phpunit-deprecation ' )]
@@ -1444,7 +1444,7 @@ public function testDoNotFailOnPhpunitDeprecationMayNotBeConfigured(): void
1444
1444
1445
1445
$ this ->expectException (Exception::class);
1446
1446
1447
- $ configuration ->failOnPhpunitDeprecation ();
1447
+ $ configuration ->doNotFailOnPhpunitDeprecation ();
1448
1448
}
1449
1449
1450
1450
#[TestDox('--do-not-fail-on-empty-test-suite ' )]
@@ -1464,7 +1464,7 @@ public function testDoNotFailOnEmptyTestSuiteMayNotBeConfigured(): void
1464
1464
1465
1465
$ this ->expectException (Exception::class);
1466
1466
1467
- $ configuration ->failOnEmptyTestSuite ();
1467
+ $ configuration ->doNotFailOnEmptyTestSuite ();
1468
1468
}
1469
1469
1470
1470
#[TestDox('--do-not-fail-on-incomplete ' )]
@@ -1484,7 +1484,7 @@ public function testDoNotFailOnIncompleteMayNotBeConfigured(): void
1484
1484
1485
1485
$ this ->expectException (Exception::class);
1486
1486
1487
- $ configuration ->failOnIncomplete ();
1487
+ $ configuration ->doNotFailOnIncomplete ();
1488
1488
}
1489
1489
1490
1490
#[TestDox('--do-not-fail-on-notice ' )]
@@ -1504,7 +1504,7 @@ public function testDoNotFailOnNoticeMayNotBeConfigured(): void
1504
1504
1505
1505
$ this ->expectException (Exception::class);
1506
1506
1507
- $ configuration ->failOnNotice ();
1507
+ $ configuration ->doNotFailOnNotice ();
1508
1508
}
1509
1509
1510
1510
#[TestDox('--do-not-fail-on-risky ' )]
@@ -1524,7 +1524,7 @@ public function testDoNotFailOnRiskyMayNotBeConfigured(): void
1524
1524
1525
1525
$ this ->expectException (Exception::class);
1526
1526
1527
- $ configuration ->failOnRisky ();
1527
+ $ configuration ->doNotFailOnRisky ();
1528
1528
}
1529
1529
1530
1530
#[TestDox('--do-not-fail-on-skipped ' )]
@@ -1544,7 +1544,7 @@ public function testDoNotFailOnSkippedMayNotBeConfigured(): void
1544
1544
1545
1545
$ this ->expectException (Exception::class);
1546
1546
1547
- $ configuration ->failOnSkipped ();
1547
+ $ configuration ->doNotFailOnSkipped ();
1548
1548
}
1549
1549
1550
1550
#[TestDox('--do-not-fail-on-warning ' )]
@@ -1564,7 +1564,7 @@ public function testDoNotFailOnWarningMayNotBeConfigured(): void
1564
1564
1565
1565
$ this ->expectException (Exception::class);
1566
1566
1567
- $ configuration ->failOnWarning ();
1567
+ $ configuration ->doNotFailOnWarning ();
1568
1568
}
1569
1569
1570
1570
#[TestDox('--stop-on-defect ' )]
0 commit comments