Eccube\Tests\Web\Admin\Product\CategoryControllerTest::testIndexWithPostParent PHP Метод

testIndexWithPostParent() публичный Метод

    public function testIndexWithPostParent()
    {
        $Parent = $this->app['eccube.repository.category']->findOneBy(array('name' => '子1'));
        $crawler = $this->client->request('POST', $this->app->url('admin_product_category_show', array('parent_id' => $Parent->getId())), array('admin_category' => array('_token' => 'dummy', 'name' => 'テストカテゴリ')));
        $this->assertTrue($this->client->getResponse()->isRedirect($this->app->url('admin_product_category_show', array('parent_id' => $Parent->getId()))));
    }