Eccube\Tests\Plugin\Web\Mypage\WithdrawControllerTest::testIndex PHP Method

testIndex() public method

public testIndex ( )
    public function testIndex()
    {
        $this->logIn($this->Customer);
        $client = $this->client;
        $client->request('GET', $this->app->path('mypage_withdraw'));
        $this->assertTrue($client->getResponse()->isSuccessful());
        $hookpoins = array(EccubeEvents::FRONT_MYPAGE_WITHDRAW_INDEX_INITIALIZE);
        $this->verifyOutputString($hookpoins);
    }