Eccube\Tests\Plugin\Web\Admin\Product\CategoryControllerTest::testRoutingAdminProductCategory PHP Method

testRoutingAdminProductCategory() public method

    public function testRoutingAdminProductCategory()
    {
        $this->client->request('GET', $this->app->url('admin_product_category'));
        $this->assertTrue($this->client->getResponse()->isSuccessful());
        $expected = array(EccubeEvents::ADMIN_PRODUCT_CATEGORY_INDEX_INITIALIZE);
        $this->verifyOutputString($expected);
    }