c265d1e13036b6c24182539292eca7b8bcdf36b8
[civicrm-core.git] / Civi / CiUtil / Command / LsCommand.php
1 <?php
2 namespace Civi\CiUtil\Command;
3
4 class LsCommand {
5 public static function main($argv) {
6 $paths = $argv;
7 array_shift($paths);
8 foreach (\Civi\CiUtil\PHPUnitScanner::findTestsByPath($paths) as $test) {
9 printf("%s %s %s\n", $test['file'], $test['class'], $test['method']);
10 }
11 }
12
13 }