GcFrontend\Controller\IndexControllerTest::testIndexActionWith404Page PHP Method

testIndexActionWith404Page() public method

Test
public testIndexActionWith404Page ( ) : void
return void
    public function testIndexActionWith404Page()
    {
        $this->dispatch('/404Page');
        $this->assertResponseStatusCode(404);
        $this->assertModuleName('GcFrontend');
        $this->assertControllerName('IndexController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('cms');
    }