本文整理汇总了PHP中Symfony\Component\Routing\Route::expects方法的典型用法代码示例。如果您正苦于以下问题:PHP Route::expects方法的具体用法?PHP Route::expects怎么用?PHP Route::expects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\Component\Routing\Route
的用法示例。
在下文中一共展示了Route::expects方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testChangingDocumentManager
/**
* Use getRouteByName() with two different document managers.
* The two document managers will return different route objects when searching for the same path.
*/
public function testChangingDocumentManager()
{
$this->routeMock->expects($this->any())->method('getPath')->will($this->returnValue('/cms/routes/test-route'));
$this->route2Mock->expects($this->any())->method('getPath')->will($this->returnValue('/cms/routes/new-route'));
$this->dmMock->expects($this->any())->method('find')->with(null, '/cms/routes/test-route')->will($this->returnValue($this->routeMock));
$this->dm2Mock->expects($this->any())->method('find')->with(null, '/cms/routes/test-route')->will($this->returnValue($this->route2Mock));
$objectManagers = array('default' => $this->dmMock, 'new_manager' => $this->dm2Mock);
$this->managerRegistryMock = $this->getMock('Doctrine\\Common\\Persistence\\ManagerRegistry');
$this->managerRegistryMock->expects($this->any())->method('getManager')->will($this->returnCallback(function ($name) use($objectManagers) {
return $objectManagers[$name];
}));
$this->candidatesMock->expects($this->any())->method('isCandidate')->will($this->returnValue(true));
$routeProvider = new RouteProvider($this->managerRegistryMock, $this->candidatesMock);
$routeProvider->setManagerName('default');
$foundRoute = $routeProvider->getRouteByName('/cms/routes/test-route');
$this->assertInstanceOf('Symfony\\Component\\Routing\\Route', $foundRoute);
$this->assertEquals('/cms/routes/test-route', $foundRoute->getPath());
$routeProvider->setManagerName('new_manager');
$newFoundRoute = $routeProvider->getRouteByName('/cms/routes/test-route');
$this->assertInstanceOf('Symfony\\Component\\Routing\\Route', $newFoundRoute);
$this->assertEquals('/cms/routes/new-route', $newFoundRoute->getPath());
}
示例2: testApplies
/**
* Test the applies() method.
*
* @covers ::applies
*
* @dataProvider appliesDataProvider
*/
public function testApplies($path, $return)
{
$this->route->expects($this->once())->method('getPath')->willReturn($path);
$enhancer = new CasRouteEnhancer($this->casHelper);
$this->assertEquals($return, $enhancer->applies($this->route));
}