1 | <?php |
||
10 | class Watcher |
||
11 | { |
||
12 | /** @var \Symfony\Component\Finder\Finder */ |
||
13 | protected $finder; |
||
14 | |||
15 | /** @var $string */ |
||
16 | protected $phpunitArguments; |
||
17 | |||
18 | public function __construct(Finder $finder) |
||
22 | |||
23 | public function usePhpunitArguments(string $arguments) |
||
29 | |||
30 | public function startWatching() |
||
49 | |||
50 | protected function clearScreen() |
||
54 | |||
55 | protected function runTests() |
||
63 | } |
||
64 |