Blog\Controller\IndexControllerTest::testDocumentComment PHP Method

testDocumentComment() public method

Test
public testDocumentComment ( ) : void
return void
    public function testDocumentComment()
    {
        $this->dispatch('/admin/module/blog/document-comment/' . $this->document->getId());
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('Blog');
        $this->assertControllerName('BlogController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('module/blog/document-comment');
    }