GcModule\Controller\IndexControllerTest::testIndexAction PHP Method

testIndexAction() public method

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