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

testNonExistingPageGives404() public method

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