You are here

public function NestedMatcherTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony-cmf/routing/Tests/NestedMatcher/NestedMatcherTest.php \Symfony\Cmf\Component\Routing\Tests\NestedMatcher\NestedMatcherTest::setUp()

File

vendor/symfony-cmf/routing/Tests/NestedMatcher/NestedMatcherTest.php, line 31

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');
}