Eccube\Tests\Plugin\Web\CartControllerTest::testRoutingCartRemove PHP Method

testRoutingCartRemove() public method

    public function testRoutingCartRemove()
    {
        $this->client->request('PUT', '/cart/remove/1');
        $this->assertTrue($this->client->getResponse()->isRedirection());
        $hookpoins = array(EccubeEvents::FRONT_CART_REMOVE_INITIALIZE, EccubeEvents::FRONT_CART_REMOVE_COMPLETE);
        $this->verifyOutputString($hookpoins);
    }