Skip to content

Commit 27d02a2

Browse files
committed
ACP2E-3334: [Internal] Fixture apply failure is not shown during execution or in logs
1 parent 6f38a8e commit 27d02a2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dev/tests/integration/framework/Magento/TestFramework/Event/ExecutionState.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ class ExecutionState
1515
private array $data = [];
1616

1717
/**
18+
* Register failure during preparation phase.
19+
*
1820
* @param string $test
1921
* @param \Throwable $exception
2022
* @return void
@@ -25,6 +27,8 @@ public function registerPreparationFailure(string $test, \Throwable $exception):
2527
}
2628

2729
/**
30+
* Pop failure registered during preparation phase.
31+
*
2832
* @param string $test
2933
* @return \Throwable|null
3034
*/
@@ -39,6 +43,8 @@ public function popPreparationFailure(string $test): ?\Throwable
3943
}
4044

4145
/**
46+
* Clear stored test data.
47+
*
4248
* @param string $test
4349
* @return void
4450
*/

dev/tests/integration/framework/Magento/TestFramework/Event/TestFinishedSubscriber.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
use Magento\TestFramework\Helper\Bootstrap;
1313
use PHPUnit\Framework\TestCase;
1414

15-
/**
16-
* Test Finished Subscriber
17-
*/
1815
class TestFinishedSubscriber implements FinishedSubscriber
1916
{
2017
/**

dev/tests/integration/framework/Magento/TestFramework/Event/TestPreparedSubscriber.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
use Magento\TestFramework\Helper\Bootstrap;
1313
use Magento\TestFramework\Workaround\Override\Config;
1414

15-
/**
16-
* Test Prepared Subscriber
17-
*/
1815
class TestPreparedSubscriber implements PreparedSubscriber
1916
{
2017
/**

0 commit comments

Comments
 (0)