mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
Fixing some failing tests.
This commit is contained in:
parent
8d7df1721c
commit
f5383a2243
2 changed files with 26 additions and 25 deletions
|
@ -58,27 +58,28 @@ class ApiShellTest extends CakeTestCase {
|
|||
$expected = array(
|
||||
'1. afterFilter()',
|
||||
'2. beforeFilter()',
|
||||
'3. beforeRender()',
|
||||
'4. constructClasses()',
|
||||
'5. disableCache()',
|
||||
'6. flash($message, $url, $pause = 1, $layout = \'flash\')',
|
||||
'7. getResponse()',
|
||||
'8. header($status)',
|
||||
'9. httpCodes($code = NULL)',
|
||||
'10. isAuthorized()',
|
||||
'11. loadModel($modelClass = NULL, $id = NULL)',
|
||||
'12. paginate($object = NULL, $scope = array (), $whitelist = array ())',
|
||||
'13. postConditions($data = array (), $op = NULL, $bool = \'AND\', $exclusive = false)',
|
||||
'14. redirect($url, $status = NULL, $exit = true)',
|
||||
'15. referer($default = NULL, $local = false)',
|
||||
'16. render($action = NULL, $layout = NULL, $file = NULL)',
|
||||
'17. set($one, $two = NULL)',
|
||||
'18. setAction($action)',
|
||||
'19. setRequest($request)',
|
||||
'20. shutdownProcess()',
|
||||
'21. startupProcess()',
|
||||
'22. validate()',
|
||||
'23. validateErrors()'
|
||||
'3. beforeRedirect($url, $status = NULL, $exit = true)',
|
||||
'4. beforeRender()',
|
||||
'5. constructClasses()',
|
||||
'6. disableCache()',
|
||||
'7. flash($message, $url, $pause = 1, $layout = \'flash\')',
|
||||
'8. getResponse()',
|
||||
'9. header($status)',
|
||||
'10. httpCodes($code = NULL)',
|
||||
'11. isAuthorized()',
|
||||
'12. loadModel($modelClass = NULL, $id = NULL)',
|
||||
'13. paginate($object = NULL, $scope = array (), $whitelist = array ())',
|
||||
'14. postConditions($data = array (), $op = NULL, $bool = \'AND\', $exclusive = false)',
|
||||
'15. redirect($url, $status = NULL, $exit = true)',
|
||||
'16. referer($default = NULL, $local = false)',
|
||||
'17. render($action = NULL, $layout = NULL, $file = NULL)',
|
||||
'18. set($one, $two = NULL)',
|
||||
'19. setAction($action)',
|
||||
'20. setRequest($request)',
|
||||
'21. shutdownProcess()',
|
||||
'22. startupProcess()',
|
||||
'23. validate()',
|
||||
'24. validateErrors()'
|
||||
);
|
||||
$this->Shell->expects($this->at(2))->method('out')->with($expected);
|
||||
|
||||
|
|
|
@ -441,10 +441,10 @@ class TestTaskTest extends CakeTestCase {
|
|||
$this->assertContains("App::import('Model', 'TestTaskArticle')", $result);
|
||||
$this->assertContains('class TestTaskArticleTestCase extends CakeTestCase', $result);
|
||||
|
||||
$this->assertContains('function startTest()', $result);
|
||||
$this->assertContains('function setUp()', $result);
|
||||
$this->assertContains("\$this->TestTaskArticle = ClassRegistry::init('TestTaskArticle')", $result);
|
||||
|
||||
$this->assertContains('function endTest()', $result);
|
||||
$this->assertContains('function tearDown()', $result);
|
||||
$this->assertContains('unset($this->TestTaskArticle)', $result);
|
||||
|
||||
$this->assertContains('function testDoSomething()', $result);
|
||||
|
@ -476,11 +476,11 @@ class TestTaskTest extends CakeTestCase {
|
|||
$this->assertContains('public $autoRender = false', $result);
|
||||
$this->assertContains('function redirect($url, $status = null, $exit = true)', $result);
|
||||
|
||||
$this->assertContains('function startTest()', $result);
|
||||
$this->assertContains('function setUp()', $result);
|
||||
$this->assertContains("\$this->TestTaskComments = new TestTestTaskCommentsController()", $result);
|
||||
$this->assertContains("\$this->TestTaskComments->constructClasses()", $result);
|
||||
|
||||
$this->assertContains('function endTest()', $result);
|
||||
$this->assertContains('function tearDown()', $result);
|
||||
$this->assertContains('unset($this->TestTaskComments)', $result);
|
||||
|
||||
$this->assertContains("'app.test_task_article'", $result);
|
||||
|
|
Loading…
Add table
Reference in a new issue