我想创建一个简单的访问单元测试,如教程中所示。
我的项目ZFCUser
用于身份验证。
结果,我的(显然未经过身份验证的)测试人员得到HTTP response
302 而不是预期的 200。
有什么想法我能做些什么吗?谢谢!
本教程中的代码如下所示:
public function testAddActionCanBeAccessed()
{
$this->routeMatch->setParam('action', 'add');
$result = $this->controller->dispatch($this->request);
$response = $this->controller->getResponse();
$this->assertEquals(200, $response->getStatusCode());
}