本文整理匯總了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));
}