2005-05-22 23:24:09 +00:00
|
|
|
<?PHP
|
2005-06-05 04:43:07 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// + $Id$
|
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Cake <https://developers.nextco.com/cake/> + //
|
|
|
|
// + Copyright: (c) 2005, Cake Authors/Developers + //
|
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Licensed under The MIT License + //
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
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
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|