* @link http://www.netcommons.org NetCommons Project * @license http://www.netcommons.org/license.txt NetCommons License */ App::uses('NetCommonsTestSuite', 'NetCommons.TestSuite'); /** * Containers All Test Suite * * @author Kohei Teraguchi * @package NetCommons\Containers\Test\Case * @codeCoverageIgnore */ class AllContainersTest extends NetCommonsTestSuite { /** * Suite defines all the tests for Containers * * @return NetCommonsTestSuite */ public static function suite() { $plugin = preg_replace('/^All([\w]+)Test$/', '$1', __CLASS__); $suite = new NetCommonsTestSuite(sprintf('All %s Plugin tests', $plugin)); $suite->addTestDirectoryRecursive(CakePlugin::path($plugin) . 'Test' . DS . 'Case'); return $suite; } }