本文整理汇总了PHP中PHPUnit_Framework_MockObject_MockObject::reveal方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Framework_MockObject_MockObject::reveal方法的具体用法?PHP PHPUnit_Framework_MockObject_MockObject::reveal怎么用?PHP PHPUnit_Framework_MockObject_MockObject::reveal使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPUnit_Framework_MockObject_MockObject
的用法示例。
在下文中一共展示了PHPUnit_Framework_MockObject_MockObject::reveal方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUp
/**
* {@inheritdoc}
*
* @covers ::__construct
*/
protected function setUp()
{
$this->pageStorage = $this->prophesize(ConfigEntityStorageInterface::class);
$this->entityManager = $this->prophesize(EntityManagerInterface::class);
$this->entityManager->getStorage('page')->willReturn($this->pageStorage);
$this->routeSubscriber = new PageManagerRoutes($this->entityManager->reveal());
}
示例2: setUp
/**
* {@inheritdoc}
*/
protected function setUp()
{
parent::setUp();
$container = new ContainerBuilder();
$this->manager = $this->prophesize(PluginManagerInterface::class);
$container->set('plugin.manager.display_variant', $this->manager->reveal());
\Drupal::setContainer($container);
}
示例3: setUp
/**
* @covers ::__construct
*/
public function setUp()
{
parent::setUp();
$this->contextHandler = $this->prophesize(ContextHandlerInterface::class);
$this->entityType = $this->prophesize(EntityTypeInterface::class);
$module_handler = $this->prophesize(ModuleHandlerInterface::class);
$module_handler->invokeAll(Argument::cetera())->willReturn([]);
$this->pageAccess = new PageAccess($this->entityType->reveal(), $this->contextHandler->reveal());
$this->pageAccess->setModuleHandler($module_handler->reveal());
}
示例4: setUp
/**
* {@inheritdoc}
*/
protected function setUp()
{
parent::setUp();
$this->typedDataManager = $this->prophesize(TypedDataManager::class);
$container = new ContainerBuilder();
$container->set('string_translation', $this->getStringTranslationStub());
$container->set('typed_data_manager', $this->typedDataManager->reveal());
\Drupal::setContainer($container);
$this->executable = $this->getMockBuilder(PageExecutable::class)->disableOriginalConstructor()->setMethods(['getPage', 'addContext'])->getMock();
$this->event = new PageManagerContextEvent($this->executable);
}
示例5: setUp
/**
* @covers ::__construct
*/
public function setUp()
{
parent::setUp();
$this->contextHandler = $this->prophesize(ContextHandlerInterface::class);
$this->entityType = $this->prophesize(EntityTypeInterface::class);
$module_handler = $this->prophesize(ModuleHandlerInterface::class);
$module_handler->invokeAll(Argument::cetera())->willReturn([]);
$this->pageAccess = new PageAccess($this->entityType->reveal(), $this->contextHandler->reveal());
$this->pageAccess->setModuleHandler($module_handler->reveal());
$this->cacheContextsManager = $this->prophesize(CacheContextsManager::class);
$container = new ContainerBuilder();
$container->set('cache_contexts_manager', $this->cacheContextsManager->reveal());
\Drupal::setContainer($container);
}
示例6: testGetPage
/**
* @covers ::getPage
*/
public function testGetPage()
{
$this->assertSame($this->page->reveal(), $this->exectuable->getPage());
}
示例7: getFilelib
private function getFilelib($mockedEventDispatcher)
{
$filelib = new FileLibrary(new MemoryStorageAdapter(), new MemoryBackendAdapter(), $mockedEventDispatcher ? $this->ed->reveal() : new EventDispatcher());
$filelib->addProfile(new FileProfile('tussi', false));
return $filelib;
}