Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / phpunit / phpunit / src / Runner / TestSuiteLoader.php
1 <?php
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
11 /**
12  * An interface to define how a test suite should be loaded.
13  *
14  * @since      Interface available since Release 2.0.0
15  */
16 interface PHPUnit_Runner_TestSuiteLoader
17 {
18     /**
19      * @param string $suiteClassName
20      * @param string $suiteClassFile
21      *
22      * @return ReflectionClass
23      */
24     public function load($suiteClassName, $suiteClassFile = '');
25
26     /**
27      * @param ReflectionClass $aClass
28      *
29      * @return ReflectionClass
30      */
31     public function reload(ReflectionClass $aClass);
32 }