-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAllInstallTest.php
More file actions
46 lines (41 loc) · 1.15 KB
/
AllInstallTest.php
File metadata and controls
46 lines (41 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* Install All Test Case
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Kotaro Hokada <kotaro.hokada@gmail.com>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
App::uses('NetCommonsTestSuite', 'NetCommons.TestSuite');
/**
* Install All Test Case
*
* @package NetCommons\Install\Test
* @codeCoverageIgnore
*/
class AllInstallTest extends NetCommonsTestSuite {
/**
* All test suite
*
* @return CakeTestSuite
* @SuppressWarnings(PHPMD)
*/
public static function suite() {
$plugin = preg_replace('/^All([\w]+)Test$/', '$1', __CLASS__);
$Folder = new Folder(CakePlugin::path($plugin) . 'Test' . DS . 'Case');
$files = $Folder->tree(null, true, 'files');
foreach ($files as $file) {
if (preg_match('/\/All([\w]+)Test\.php$/', $file)) {
continue;
}
if (substr($file, -8) === 'Test.php') {
var_dump($file);
}
}
$suite = new CakeTestSuite(sprintf('All %s Plugin tests', $plugin));
$suite->addTestDirectoryRecursive(CakePlugin::path($plugin) . 'Test' . DS . 'Case');
return $suite;
}
}