Eccube\Tests\Plugin\Web\ProductControllerTest::testRoutingList PHP Method

testRoutingList() public method

public testRoutingList ( )
    public function testRoutingList()
    {
        $client = $this->client;
        $client->request('GET', $this->app->url('product_list'));
        $this->assertTrue($client->getResponse()->isSuccessful());
        $hookpoins = array(EccubeEvents::FRONT_PRODUCT_INDEX_INITIALIZE, EccubeEvents::FRONT_PRODUCT_INDEX_SEARCH, EccubeEvents::FRONT_PRODUCT_INDEX_DISP, EccubeEvents::FRONT_PRODUCT_INDEX_ORDER);
        $this->verifyOutputString($hookpoins);
    }