mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
Merge branch '2.0' of github.com:cakephp/cakephp into 2.0
This commit is contained in:
commit
3c4f616737
4 changed files with 95 additions and 10 deletions
|
@ -200,7 +200,6 @@ class Shell extends Object {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
protected function _welcome() {
|
protected function _welcome() {
|
||||||
$this->clear();
|
|
||||||
$this->out();
|
$this->out();
|
||||||
$this->out('<info>Welcome to CakePHP v' . Configure::version() . ' Console</info>');
|
$this->out('<info>Welcome to CakePHP v' . Configure::version() . ' Console</info>');
|
||||||
$this->hr();
|
$this->hr();
|
||||||
|
|
|
@ -76,6 +76,7 @@ class CakeTestLoader extends PHPUnit_Runner_StandardTestSuiteLoader {
|
||||||
$case = str_replace('Test.php', '', $case);
|
$case = str_replace('Test.php', '', $case);
|
||||||
$testCases[$testCaseFile] = $case;
|
$testCases[$testCaseFile] = $case;
|
||||||
}
|
}
|
||||||
|
sort($testCases);
|
||||||
return $testCases;
|
return $testCases;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
41
lib/Cake/tests/Case/AllCoreTest.php
Normal file
41
lib/Cake/tests/Case/AllCoreTest.php
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AllCoreTest file
|
||||||
|
*
|
||||||
|
* PHP 5
|
||||||
|
*
|
||||||
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||||
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
|
*
|
||||||
|
* Licensed under The MIT License
|
||||||
|
* Redistributions of files must retain the above copyright notice.
|
||||||
|
*
|
||||||
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
|
* @package cake.tests.cases
|
||||||
|
* @since CakePHP(tm) v 2.0
|
||||||
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AllCoreTest class
|
||||||
|
*
|
||||||
|
* This test group will run all core class tests
|
||||||
|
*
|
||||||
|
* @package cake.tests.groups
|
||||||
|
*/
|
||||||
|
class AllCoreTest extends PHPUnit_Framework_TestSuite {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* suite method, defines tests for this suite.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function suite() {
|
||||||
|
$suite = new CakeTestSuite('All Core class tests');
|
||||||
|
|
||||||
|
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'Core');
|
||||||
|
return $suite;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
44
lib/Cake/tests/Case/Console/AllConsoleTest.php
Normal file
44
lib/Cake/tests/Case/Console/AllConsoleTest.php
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AllConsoleTest file
|
||||||
|
*
|
||||||
|
* PHP 5
|
||||||
|
*
|
||||||
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||||
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
|
*
|
||||||
|
* Licensed under The MIT License
|
||||||
|
* Redistributions of files must retain the above copyright notice.
|
||||||
|
*
|
||||||
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
|
* @package cake.tests.cases
|
||||||
|
* @since CakePHP(tm) v 2.0
|
||||||
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AllConsoleTest class
|
||||||
|
*
|
||||||
|
* This test group will run all console classes.
|
||||||
|
*
|
||||||
|
* @package cake.tests.cases.console
|
||||||
|
*/
|
||||||
|
class AllConsoleTest extends PHPUnit_Framework_TestSuite {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* suite method, defines tests for this suite.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function suite() {
|
||||||
|
$suite = new CakeTestSuite('All console classes');
|
||||||
|
|
||||||
|
$path = CORE_TEST_CASES . DS . 'Console' . DS;
|
||||||
|
|
||||||
|
$suite->addTestFile($path . 'AllConsoleLibsTest.php');
|
||||||
|
$suite->addTestFile($path . 'AllTasksTest.php');
|
||||||
|
$suite->addTestFile($path . 'AllShellsTest.php');
|
||||||
|
return $suite;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue