GcConfig\Controller\IndexControllerTest::testIndexAction PHP Метод

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

Test
public testIndexAction ( ) : void
Результат void
    public function testIndexAction()
    {
        $this->dispatch('/admin/config');
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('GcConfig');
        $this->assertControllerName('ConfigController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('config');
    }
IndexControllerTest