Blog\Controller\IndexControllerTest::testDocumentCommentActionWithRedirect PHP Method

testDocumentCommentActionWithRedirect() public method

Test
    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');
    }