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

testRoutingIndex() public method

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