eZ\Publish\Core\MVC\Symfony\SiteAccess\Tests\RouterTest::testConstruct PHP Method

testConstruct() public method

public testConstruct ( )
    public function testConstruct()
    {
        return new Router($this->matcherBuilder, $this->getMock('Psr\\Log\\LoggerInterface'), 'default_sa', array('Map\\URI' => array('first_sa' => 'first_sa', 'second_sa' => 'second_sa'), 'Map\\Host' => array('first_sa' => 'first_sa', 'first_siteaccess' => 'first_sa', 'third_siteaccess' => 'third_sa'), 'Map\\Port' => array(81 => 'third_sa', 82 => 'fourth_sa', 83 => 'first_sa', 85 => 'first_sa'), 'Compound\\LogicalAnd' => array(array('matchers' => array('Map\\URI' => array('eng' => true), 'Map\\Host' => array('fr.ezpublish.dev' => true)), 'match' => 'fr_eng'), array('matchers' => array('Map\\URI' => array('fre' => true), 'Map\\Host' => array('us.ezpublish.dev' => true)), 'match' => 'fr_us'))), array('first_sa', 'second_sa', 'third_sa', 'fourth_sa', 'headerbased_sa', 'fr_eng', 'fr_us'));
    }