对组件进行重定向单元测试

时间:2014-09-02 09:49:08

标签: unit-testing cakephp components

我想在Component上进行重定向的单元测试。

redirectComponent.php

 public function redirect(){
   $controller = $this->_Collection -> getController();
   $controller->redirect('https://test.com');
 }

但是我写了这段代码,没有显示任何内容

Welcome to CakePHP v2.5.3 Console
---------------------------------------------------------------
App : portal
Path: **
---------------------------------------------------------------
CakePHP Test Shell
---------------------------------------------------------------
PHPUnit 3.7.37 by Sebastian Bergmann.

如何测试组件的重定向?

提前致谢。

1 个答案:

答案 0 :(得分:0)

模拟控制器对象的重定向方法。