TestMarkedIncompleteSubscriber.php
Same filename in this branch
- 11.1.x vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestMarkedIncompleteSubscriber.php
- 11.1.x vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestMarkedIncompleteSubscriber.php
- 11.1.x vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestMarkedIncompleteSubscriber.php
- 11.1.x vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestMarkedIncompleteSubscriber.php
- 11.1.x vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestMarkedIncompleteSubscriber.php
Namespace
PHPUnit\Logging\TestDoxFile
-
vendor/
phpunit/ phpunit/ src/ Logging/ TestDox/ TestResult/ Subscriber/ TestMarkedIncompleteSubscriber.php
View source
<?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\TestDox;
use PHPUnit\Event\Test\MarkedIncomplete;
use PHPUnit\Event\Test\MarkedIncompleteSubscriber;
/**
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
*
* @internal This class is not covered by the backward compatibility promise for PHPUnit
*/
final class TestMarkedIncompleteSubscriber extends Subscriber implements MarkedIncompleteSubscriber {
public function notify(MarkedIncomplete $event) : void {
$this->collector()
->testMarkedIncomplete($event);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TestMarkedIncompleteSubscriber | @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit |