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

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

Test
public testDocumentCommentWithPostData ( ) : void
Результат void
    public function testDocumentCommentWithPostData()
    {
        $this->dispatch('/admin/module/blog/document-comment/' . $this->document->getId(), 'POST', array('comment' => array('1' => array('delete' => true), '2' => array('message' => true, 'wrong-name' => false))));
        $this->assertResponseStatusCode(302);
        $this->assertModuleName('Blog');
        $this->assertControllerName('BlogController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('module/blog/document-comment');
    }