Eccube\Tests\Web\ShoppingControllerTest::testDeliveryWithNotInput PHP Method

testDeliveryWithNotInput() public method

購入確認画面→お届け先設定(未入力)
    public function testDeliveryWithNotInput()
    {
        $faker = $this->getFaker();
        $Customer = $this->logIn();
        $client = $this->client;
        // カート画面
        $this->scenarioCartIn($client);
        // 確認画面
        $crawler = $this->scenarioConfirm($client);
        // お届け先指定画面
        $crawler = $client->request('POST', $this->app->path('shopping_delivery'));
        $this->assertTrue($client->getResponse()->isSuccessful());
    }