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

testRoutingAdminBasisTaxDelete() public method

    public function testRoutingAdminBasisTaxDelete()
    {
        $redirectUrl = $this->app->url('admin_setting_shop_tax');
        $this->client->request('DELETE', $this->app->url('admin_setting_shop_tax_delete', array('id' => 1)));
        $actual = $this->client->getResponse()->isRedirect($redirectUrl);
        $this->assertSame(true, $actual);
    }