Eccube\Tests\Web\Admin\Setting\Shop\CsvControllerTest::testRoutingCsv PHP Method

testRoutingCsv() public method

public testRoutingCsv ( )
    public function testRoutingCsv()
    {
        if ($this->app['config']['database']['driver'] == 'pdo_sqlite') {
            // 何故か CsvType が EntityNotFoundException: Entity was not found. になる
            $this->markTestSkipped('Can not support for sqlite3');
        }
        $this->client->request('GET', $this->app['url_generator']->generate('admin_setting_shop_csv', array('id' => 1)));
        $this->assertTrue($this->client->getResponse()->isSuccessful());
    }