1 | <?php |
||
7 | class TestFileLoader |
||
8 | { |
||
9 | /** |
||
10 | * The pattern used for grabbing test files. Uses the *Test.php convention |
||
11 | * that PHPUnit defaults to. |
||
12 | */ |
||
13 | const TEST_PATTERN = '/.+Test\.php$/'; |
||
14 | |||
15 | /** |
||
16 | * Matches php files |
||
17 | */ |
||
18 | const FILE_PATTERN = '/.+\.php$/'; |
||
19 | |||
20 | /** |
||
21 | * Used to ignore directory paths '.' and '..' |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | private static $dotPattern = '/([.]+)$/'; |
||
26 | |||
27 | /** |
||
28 | * The collection of loaded files for this test suite |
||
29 | * |
||
30 | * @var array |
||
31 | */ |
||
32 | protected $files = array(); |
||
33 | |||
34 | /** |
||
35 | * The collection of excluded files |
||
36 | * |
||
37 | * @var array |
||
38 | */ |
||
39 | protected $excludedFiles = array(); |
||
40 | |||
41 | /** |
||
42 | * When true, the SuiteLoader add the files to excluded files |
||
43 | * |
||
44 | * @var bool |
||
45 | */ |
||
46 | protected $excludingFiles = false; |
||
47 | |||
48 | |||
49 | 25 | public function __construct($options = null) |
|
57 | |||
58 | /** |
||
59 | * Loads a SuitePath and makes sure to |
||
60 | * take into account the excluded directory / files |
||
61 | * |
||
62 | * @param SuitePath $path |
||
63 | * @return string[] |
||
64 | */ |
||
65 | 12 | public function loadSuitePath(SuitePath $path) |
|
84 | |||
85 | /** |
||
86 | * Loads suites based on a specific path. |
||
87 | * A valid path can be a directory or file |
||
88 | * |
||
89 | * @param $path |
||
90 | * @param $pattern |
||
91 | * @throws \InvalidArgumentException |
||
92 | * @return string[] |
||
93 | */ |
||
94 | 22 | public function loadPath($path, $pattern = null) |
|
111 | |||
112 | /** |
||
113 | * Loads suites from a directory |
||
114 | * |
||
115 | * @param string $path |
||
116 | * @param string $pattern |
||
117 | */ |
||
118 | 13 | private function loadDir($path, $pattern = self::TEST_PATTERN) |
|
125 | |||
126 | /** |
||
127 | * Load a single suite file |
||
128 | * |
||
129 | * @param $path |
||
130 | */ |
||
131 | 11 | private function loadFile($path) |
|
135 | |||
136 | /** |
||
137 | * Attempts to load suites from a path. |
||
138 | * |
||
139 | * @param string $path |
||
140 | * @param string $pattern regular expression for matching file names |
||
141 | */ |
||
142 | 20 | private function tryLoadTests($path, $pattern = self::TEST_PATTERN) |
|
156 | |||
157 | } |
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: