mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
fixing view test usage of error handler
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7023 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
08c5472a3e
commit
d5f71ccadf
1 changed files with 23 additions and 11 deletions
|
@ -26,7 +26,7 @@
|
||||||
* @lastmodified $Date$
|
* @lastmodified $Date$
|
||||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||||
*/
|
*/
|
||||||
App::import('Core', array('View', 'Controller'));
|
App::import('Core', array('View', 'Controller', 'Error'));
|
||||||
|
|
||||||
if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
||||||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||||
|
@ -43,6 +43,13 @@ class ViewPostsController extends Controller {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class ViewTestErrorHandler extends ErrorHandler {
|
||||||
|
|
||||||
|
function stop() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class TestView extends View {
|
class TestView extends View {
|
||||||
|
|
||||||
function renderElement($name, $params = array()) {
|
function renderElement($name, $params = array()) {
|
||||||
|
@ -59,6 +66,11 @@ class TestView extends View {
|
||||||
function loadHelpers(&$loaded, $helpers, $parent = null) {
|
function loadHelpers(&$loaded, $helpers, $parent = null) {
|
||||||
return $this->_loadHelpers($loaded, $helpers, $parent);
|
return $this->_loadHelpers($loaded, $helpers, $parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function cakeError($method, $messages) {
|
||||||
|
$error =& new ViewTestErrorHandler($method, $messages);
|
||||||
|
return $error;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class TestAfterHelper extends Helper {
|
class TestAfterHelper extends Helper {
|
||||||
|
|
Loading…
Add table
Reference in a new issue