1 | <?php |
||
22 | abstract class MultiUseCaseTest extends UseCaseTest |
||
23 | { |
||
24 | /** |
||
25 | * @var string The path to the use cases relative to the project's root. |
||
26 | */ |
||
27 | public static $useCasesDir = 'Tests/UseCases'; |
||
28 | |||
29 | /** |
||
30 | * Returns the absolure path to the UseCases. |
||
31 | * |
||
32 | * Appends the {@see useCaseDir use case directory} to the root of your |
||
33 | * project. The project root is detected based on the {@see getPhpUnitXmlDir |
||
34 | * location of PHPUnit's configuration file}. |
||
35 | * |
||
36 | * @return string |
||
37 | * @throws InvalidPathException |
||
38 | */ |
||
39 | 10 | public static function getAbsoluteUseCasesDir() |
|
62 | } |
||
63 |