Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php declare(strict_types=1);
2
/*
3
 * This file is part of PHPUnit.
4
 *
5
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
namespace PHPUnit\Runner;
11
 
12
/**
13
 * This interface, as well as the associated mechanism for extending PHPUnit,
14
 * will be removed in PHPUnit 10. There is no alternative available in this
15
 * version of PHPUnit.
16
 *
17
 * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18
 *
19
 * @see https://github.com/sebastianbergmann/phpunit/issues/4676
20
 */
21
interface AfterIncompleteTestHook extends TestHook
22
{
23
    public function executeAfterIncompleteTest(string $test, string $message, float $time): void;
24
}