Frontend\Modules\Blog\Tests\Actions\IndexTest::testNonExistingPageGives404 PHP Méthode

testNonExistingPageGives404() public méthode

    public function testNonExistingPageGives404()
    {
        $client = static::createClient();
        $client->request('GET', '/en/blog', array('page' => 34));
        $this->assertIs404($client);
    }