Frontend\Modules\Blog\Actions\CategoryTest::testNonExistingPageGives404 PHP Method

testNonExistingPageGives404() public method

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