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

testRoutingCartUpException() public method

    public function testRoutingCartUpException()
    {
        $this->client->request('PUT', '/cart/up/9999');
        $this->assertTrue($this->client->getResponse()->isRedirection());
        $hookpoins = array(EccubeEvents::FRONT_CART_UP_INITIALIZE, EccubeEvents::FRONT_CART_UP_EXCEPTION);
        $this->verifyOutputString($hookpoins);
    }