mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
Testcase for Controller::setAction()
This commit is contained in:
parent
6046b8d013
commit
ad2472aab0
1 changed files with 17 additions and 1 deletions
|
@ -273,6 +273,21 @@ class TestController extends ControllerTestAppController {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* view method
|
||||||
|
*
|
||||||
|
* @param mixed $testId
|
||||||
|
* @param mixed $test2Id
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function view($testId, $test2Id) {
|
||||||
|
$this->data = array(
|
||||||
|
'testId' => $testId,
|
||||||
|
'test2Id' => $test2Id
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public function returner() {
|
public function returner() {
|
||||||
return 'I am from the controller.';
|
return 'I am from the controller.';
|
||||||
}
|
}
|
||||||
|
@ -978,9 +993,10 @@ class ControllerTest extends CakeTestCase {
|
||||||
$request = new CakeRequest('controller_posts/index');
|
$request = new CakeRequest('controller_posts/index');
|
||||||
|
|
||||||
$TestController = new TestController($request);
|
$TestController = new TestController($request);
|
||||||
$TestController->setAction('index', 1, 2);
|
$TestController->setAction('view', 1, 2);
|
||||||
$expected = array('testId' => 1, 'test2Id' => 2);
|
$expected = array('testId' => 1, 'test2Id' => 2);
|
||||||
$this->assertSame($expected, $TestController->request->data);
|
$this->assertSame($expected, $TestController->request->data);
|
||||||
|
$this->assertSame('view', $TestController->request->params['action']);
|
||||||
$this->assertSame('index', $TestController->view);
|
$this->assertSame('index', $TestController->view);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue