GcFrontend\Controller\IndexControllerTest::testIndexActionWith404Page PHP Метод

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

Test
public testIndexActionWith404Page ( ) : void
Результат void
    public function testIndexActionWith404Page()
    {
        $this->dispatch('/404Page');
        $this->assertResponseStatusCode(404);
        $this->assertModuleName('GcFrontend');
        $this->assertControllerName('IndexController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('cms');
    }