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

testRoutingCartDownException() public method

    public function testRoutingCartDownException()
    {
        $this->client->request('PUT', '/cart/down/999999');
        $this->assertTrue($this->client->getResponse()->isRedirection());
        $hookpoins = array(EccubeEvents::FRONT_CART_DOWN_INITIALIZE, EccubeEvents::FRONT_CART_DOWN_COMPLETE);
        $this->verifyOutputString($hookpoins);
    }