Eccube\Tests\Plugin\Web\Mypage\MypageControllerTest::testRoutingFavorite PHP Method

testRoutingFavorite() public method

public testRoutingFavorite ( )
    public function testRoutingFavorite()
    {
        $this->logIn();
        $client = $this->client;
        $client->request('GET', $this->app->url('mypage_favorite'));
        $this->assertTrue($client->getResponse()->isSuccessful());
        $hookpoins = array(EccubeEvents::FRONT_MYPAGE_MYPAGE_FAVORITE_SEARCH);
        $this->verifyOutputString($hookpoins);
    }