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

testNonExistingCategoryPostGives404() public method

    public function testNonExistingCategoryPostGives404()
    {
        $client = static::createClient();
        $client->request('GET', '/en/blog/category/non-existing');
        $this->assertIs404($client);
    }