1
2
3
4
5
6
7
8
9
10
11
12
|
<?php // $Rev: 129 $ error_reporting(E_ALL);
foreach (new DirectoryIterator(getcwd()) as $entry) { if ($entry->isFile() && strpos($entry, '_testcase.')>0) { echo basename($entry); require_once($entry); echo '<br>...pass!<br><br>'; } } ?>
|