Eccube\Tests\Web\Admin\Setting\Shop\TaxRuleControllerTest::testTaxDeleteFail PHP Method

testTaxDeleteFail() public method

public testTaxDeleteFail ( )
    public function testTaxDeleteFail()
    {
        $tid = 99999;
        $redirectUrl = $this->app->url('admin_setting_shop_tax');
        $this->client->request('DELETE', $this->app->url('admin_setting_shop_tax_delete', array('id' => $tid)));
        $this->assertTrue($this->client->getResponse()->isRedirect($redirectUrl));
    }