* @author Ryuji AMANO * @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'); /** * All View/Helper Test suite * * @author Ryuji AMANO * @package NetCommons\NetCommons\Test\Case\View\Helper */ class AllNetCommonsViewHelperTest extends NetCommonsTestSuite { /** * All View/Helper Test suite * * @return NetCommonsTestSuite * @codeCoverageIgnore */ public static function suite() { $name = preg_replace('/^All([\w]+)Test$/', '$1', __CLASS__); $suite = new NetCommonsTestSuite(sprintf('All %s tests', $name)); $suite->addTestDirectoryRecursive(__DIR__ . DS . 'View' . DS . 'Helper'); return $suite; } }