mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
3b3a47e3f0
git-svn-id: https://svn.cakephp.org/repo/trunk/cake@311 3807eeeb-6ff5-0310-8944-8be069107fe0
39 lines
961 B
PHP
39 lines
961 B
PHP
<?php
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// + $Id$
|
|
// +------------------------------------------------------------------+ //
|
|
// + CakePHP : Rapid Development Framework <http://www.cakephp.org/> + //
|
|
// + Copyright: (c) 2005, Cake Authors/Developers + //
|
|
// +------------------------------------------------------------------+ //
|
|
// + Licensed under The MIT License + //
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
*
|
|
* @filesource
|
|
* @package cake
|
|
* @subpackage cake.app.controllers
|
|
* @version $Revision:$
|
|
* @modifiedby $LastChangedBy:$
|
|
* @lastmodified $Date:$
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.app.controllers
|
|
*/
|
|
class TestsController extends TestsHelper {
|
|
|
|
/**
|
|
* Runs all library and application tests
|
|
*
|
|
*/
|
|
function test_all ()
|
|
{
|
|
$this->layout = null;
|
|
require_once SCRIPTS.'test.php';
|
|
}
|
|
}
|
|
|
|
?>
|