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

testRoutingCsvFail() public method

public testRoutingCsvFail ( )
    public function testRoutingCsvFail()
    {
        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('admin_setting_shop_csv', array('id' => 9999)));
        $this->fail();
    }