Eccube\Tests\Plugin\Web\ContactControllerTest::testRoutingIndex PHP Method

testRoutingIndex() public method

public testRoutingIndex ( )
    public function testRoutingIndex()
    {
        $client = $this->createClient();
        $client->request('GET', $this->app->path('contact'));
        $this->assertTrue($client->getResponse()->isSuccessful());
        $hookpoins = array(EccubeEvents::FRONT_CONTACT_INDEX_INITIALIZE);
        $this->verifyOutputString($hookpoins);
    }