| 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 |
use ReflectionClass;
|
|
|
13 |
|
|
|
14 |
/**
|
|
|
15 |
* @deprecated see https://github.com/sebastianbergmann/phpunit/issues/4039
|
|
|
16 |
*
|
|
|
17 |
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
|
|
|
18 |
*/
|
|
|
19 |
interface TestSuiteLoader
|
|
|
20 |
{
|
|
|
21 |
public function load(string $suiteClassFile): ReflectionClass;
|
|
|
22 |
|
|
|
23 |
public function reload(ReflectionClass $aClass): ReflectionClass;
|
|
|
24 |
}
|