cakephp2-php8/tests/test_paths.php
2005-09-11 02:35:47 +00:00

46 lines
No EOL
1.4 KiB
PHP

<?php
/* SVN FILE: $Id$ */
/**
* Short description for file.
*
* Long description for file
*
* PHP versions 4 and 5
*
* CakePHP Test Suite <https://trac.cakephp.org/wiki/Cake/Manual/TestSuite/>
* Copyright (c) 2005, CakePHP Test Suite Authors/Developers
* Author(s): Larry E. Masters aka PhpNut <phpnut@gmail.com>
*
* Portions modified from WACT Test Suite
* Author(s): Harry Fuecks
* Jon Ramsey
* Jason E. Sweat
* Franco Ponticelli
* Lorenzo Alberton
*
* Licensed under The Open Group Test Suite License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @author CakePHP Test Suite Authors/Developers
* @copyright Copyright (c) 2005, CakePHP Test Suite Authors/Developers
* @link https://trac.cakephp.org/wiki/Cake/Manual/TestSuite/Authors Authors/Developers
* @package tests
* @since CakePHP Test Suite v 1.0.0.0
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/
/**
* Path to the simpletest directory and unit tests.
*/
define ('SIMPLE_TEST', VENDORS. 'simpletest'.DS);
define ('CORE_TEST_CASES', TESTS. 'core' .DS. 'cases');
define ('CORE_TEST_GROUPS', TESTS. 'core' .DS. 'groups');
define ('APP_TEST_CASES', TESTS. 'app' .DS. 'cases');
define ('APP_TEST_GROUPS', TESTS. 'app' .DS. 'groups');
?>