Eccube\Tests\Plugin\Web\Mypage\DeliveryControllerTest::testDeleteWithFailure PHP Method

testDeleteWithFailure() public method

    public function testDeleteWithFailure()
    {
        $this->logIn($this->Customer);
        $client = $this->client;
        $crawler = $client->request('DELETE', $this->app->path('mypage_delivery_delete', array('id' => 999999999)));
        $this->assertTrue($client->getResponse()->isRedirect($this->app->url('mypage_delivery')));
        $hookpoins = array();
        $this->verifyOutputString($hookpoins);
    }