Frontend\Modules\Faq\Actions\CategoryTest::testNonExistingCategoryPostGives404 PHP 메소드

testNonExistingCategoryPostGives404() 공개 메소드

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