Blog\Controller\IndexControllerTest::testDocumentCommentActionWithRedirect PHP Метод

testDocumentCommentActionWithRedirect() публичный Метод

Test
public testDocumentCommentActionWithRedirect ( ) : void
Результат void
    public function testDocumentCommentActionWithRedirect()
    {
        $this->dispatch('/admin/module/blog/document-comment/99');
        $this->assertResponseStatusCode(302);
        $this->assertModuleName('Blog');
        $this->assertControllerName('BlogController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('module/blog/document-comment');
    }