public function NestedMatcherTest::setUp

File

drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Tests/NestedMatcher/NestedMatcherTest.php, line 22

Class

NestedMatcherTest

Namespace

Symfony\Cmf\Component\Routing\Tests\NestedMatcher

Code

public function setUp() {
  $this->provider = $this
    ->buildMock("Symfony\\Cmf\\Component\\Routing\\RouteProviderInterface");
  $this->routeFilter1 = $this
    ->buildMock('Symfony\\Cmf\\Component\\Routing\\NestedMatcher\\RouteFilterInterface');
  $this->routeFilter2 = $this
    ->buildMock('Symfony\\Cmf\\Component\\Routing\\NestedMatcher\\RouteFilterInterface');
  $this->finalMatcher = $this
    ->buildMock('Symfony\\Cmf\\Component\\Routing\\NestedMatcher\\FinalMatcherInterface');
}