2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-06-05 04:43:07 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// + $Id$
|
|
|
|
// +------------------------------------------------------------------+ //
|
2005-07-04 02:07:21 +00:00
|
|
|
// + Cake PHP : Rapid Development Framework <http://www.cakephp.org/> + //
|
2005-06-05 04:43:07 +00:00
|
|
|
// + Copyright: (c) 2005, Cake Authors/Developers + //
|
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Licensed under The MIT License + //
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2005-05-22 23:24:09 +00:00
|
|
|
|
2005-07-04 01:24:13 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app.controllers
|
2005-07-04 02:07:21 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
2005-07-04 01:24:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app.controllers
|
|
|
|
*/
|
2005-05-22 23:24:09 +00:00
|
|
|
class TestsController extends TestsHelper {
|
|
|
|
|
2005-05-31 23:18:22 +00:00
|
|
|
/**
|
2005-06-05 23:41:46 +00:00
|
|
|
* Runs all library and application tests
|
|
|
|
*
|
2005-05-31 23:18:22 +00:00
|
|
|
*/
|
2005-06-05 23:41:46 +00:00
|
|
|
function test_all ()
|
|
|
|
{
|
2005-06-18 23:26:35 +00:00
|
|
|
$this->layout = null;
|
|
|
|
require_once SCRIPTS.'test.php';
|
2005-05-22 23:24:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|