ZF2の「はじめに」アプリケーションを作成し、 ZF2UnitTestingチュートリアルのテストを適用しようとしています。今、私はこの簡単なテストで問題を抱えています:
[プロジェクト]/module/Album/test/AlbumTest/Controller/AlbumControllerTest.php
<?php
namespace AlbumTest\Controller;
...
class AlbumControllerTest extends AbstractHttpControllerTestCase
{
...
public function testIndexActionCanBeAccessed()
{
$this->dispatch('/album');
$this->assertResponseStatusCode(200);
$this->assertModuleName('Album');
$this->assertControllerName('Album\Controller\Album');
$this->assertControllerClass('AlbumController');
$this->assertMatchedRouteName('album');
}
}
コマンドライン:/ var / www / sandbox / zf2sandbox / module / Album / test /
# phpunit
PHPUnit 3.7.13 by Sebastian Bergmann.
Configuration read from /var/www/sandbox/zf2sandbox/module/Album/test/phpunit.xml
F....
Time: 0 seconds, Memory: 10.00Mb
There was 1 failure:
1) AlbumTest\Controller\AlbumControllerTest::testIndexActionCanBeAccessed
Failed asserting response code "200", actual status code is "500"
/var/www/sandbox/zf2sandbox/vendor/zendframework/zendframework/library/Zend/Test/PHPUnit/Controller/AbstractControllerTestCase.php:373
/var/www/sandbox/zf2sandbox/module/Album/test/AlbumTest/Controller/AlbumControllerTest.php:49
FAILURES!
Tests: 5, Assertions: 11, Failures: 1.
したがって、assertResponseStatusCode(200)
ステータスコードがであるため、は失敗します500
。なんで?
ブラウザ( http://zf2sandbox.sandbox.loc/album)でこのパスを呼び出すと、次のように機能します。
どうも