Frontend\Modules\Blog\Tests\Actions\IndexTest::testNonExistingPageGives404 PHP Method

testNonExistingPageGives404() public method

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