1 | <?php |
||
7 | class SuitePath |
||
8 | { |
||
9 | const DEFAULT_SUFFIX = 'Test.php'; |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $path; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $suffix; |
||
20 | |||
21 | /** |
||
22 | * @var string[]s |
||
23 | */ |
||
24 | protected $excludedPaths; |
||
25 | |||
26 | 14 | public function __construct($path, $excludedPaths, $suffix) |
|
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | 14 | public function getPath() |
|
43 | |||
44 | /** |
||
45 | * @return string[] |
||
46 | */ |
||
47 | 12 | public function getExcludedPaths() |
|
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | 12 | public function getSuffix() |
|
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | 12 | public function getPattern() |
|
67 | } |
||
68 |