Social\Controller\IndexControllerTest::testIndexAction PHP Method

testIndexAction() public method

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