Eccube\Tests\Web\EntryControllerTest::testConfirm PHP Method

testConfirm() public method

public testConfirm ( )
    public function testConfirm()
    {
        $client = $this->createClient();
        $crawler = $client->request('POST', $this->app['url_generator']->generate('entry'), array('entry' => $this->createFormData(), 'mode' => 'confirm'));
        $this->expected = '新規会員登録確認';
        $this->actual = $crawler->filter('h1.page-heading')->text();
        $this->verify();
        $this->assertTrue($client->getResponse()->isSuccessful());
    }