App\Test\TestCase\Controller\PagesControllerTest::testMissingTemplate PHP Method

testMissingTemplate() public method

Test that missing template renders 404 page in production
public testMissingTemplate ( ) : void
return void
    public function testMissingTemplate()
    {
        Configure::write('debug', false);
        $this->get('/pages/not_existing');
        $this->assertResponseError();
        $this->assertResponseContains('Error');
    }