Blog\Controller\IndexControllerTest::testIndexAction PHP Method

testIndexAction() public method

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