-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Subscribe to Test\PreparationStarted event
- Loading branch information
1 parent
ab302b9
commit 2ad7f18
Showing
2 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/Logging/JUnit/Subscriber/TestPreparationStartedSubscriber.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php declare(strict_types=1); | ||
/* | ||
* This file is part of PHPUnit. | ||
* | ||
* (c) Sebastian Bergmann <sebastian@phpunit.de> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace PHPUnit\Logging\JUnit; | ||
|
||
use PHPUnit\Event\InvalidArgumentException; | ||
use PHPUnit\Event\Test\PreparationStarted; | ||
use PHPUnit\Event\Test\PreparationStartedSubscriber; | ||
use PHPUnit\Event\TestData\NoDataSetFromDataProviderException; | ||
|
||
/** | ||
* @internal This class is not covered by the backward compatibility promise for PHPUnit | ||
*/ | ||
final class TestPreparationStartedSubscriber extends Subscriber implements PreparationStartedSubscriber | ||
{ | ||
/** | ||
* @throws InvalidArgumentException | ||
* @throws NoDataSetFromDataProviderException | ||
*/ | ||
public function notify(PreparationStarted $event): void | ||
{ | ||
$this->logger()->testPreparationStarted($event); | ||
} | ||
} |