當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ViewExecutable::expects方法代碼示例

本文整理匯總了PHP中Drupal\views\ViewExecutable::expects方法的典型用法代碼示例。如果您正苦於以下問題:PHP ViewExecutable::expects方法的具體用法?PHP ViewExecutable::expects怎麽用?PHP ViewExecutable::expects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Drupal\views\ViewExecutable的用法示例。


在下文中一共展示了ViewExecutable::expects方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setUp

 /**
  * {@inheritdoc}
  */
 protected function setUp()
 {
     parent::setUp();
     $this->entityManager = $this->getMock('Drupal\\Core\\Entity\\EntityManagerInterface');
     $this->entityStorage = $this->getMock('Drupal\\Core\\Entity\\EntityStorageInterface');
     $this->entityViewBuilder = $this->getMock('Drupal\\Core\\Entity\\EntityViewBuilderInterface');
     $this->executable = $this->getMockBuilder('Drupal\\views\\ViewExecutable')->disableOriginalConstructor()->getMock();
     $this->display = $this->getMockBuilder('Drupal\\views\\Plugin\\views\\display\\DisplayPluginBase')->disableOriginalConstructor()->getMock();
     $this->stylePlugin = $this->getMockBuilder('Drupal\\views\\Plugin\\views\\style\\StylePluginBase')->disableOriginalConstructor()->getMock();
     $this->executable->style_plugin = $this->stylePlugin;
     $this->entityHandler = new Entity(array(), 'entity', array('entity_type' => 'entity_test'), $this->entityManager);
     $this->display->expects($this->any())->method('getPlugin')->with('style')->willReturn($this->stylePlugin);
     $this->executable->expects($this->any())->method('getStyle')->willReturn($this->stylePlugin);
     $token = $this->getMockBuilder('Drupal\\Core\\Utility\\Token')->disableOriginalConstructor()->getMock();
     $token->expects($this->any())->method('replace')->willReturnArgument(0);
     $container = new ContainerBuilder();
     $container->set('token', $token);
     \Drupal::setContainer($container);
 }
開發者ID:nstielau,項目名稱:drops-8,代碼行數:22,代碼來源:EntityTest.php

示例2: testBuildFailed

 /**
  * Tests the build method with a failed execution.
  *
  * @see \Drupal\views\Plugin\block\ViewsBlock::build()
  */
 public function testBuildFailed()
 {
     $output = FALSE;
     $this->executable->expects($this->once())->method('buildRenderable')->with('block_1', [])->willReturn($output);
     $block_id = 'views_block:test_view-block_1';
     $config = array();
     $definition = array();
     $definition['provider'] = 'views';
     $plugin = new ViewsBlock($config, $block_id, $definition, $this->executableFactory, $this->storage, $this->account);
     $this->assertEquals(array(), $plugin->build());
 }
開發者ID:ddrozdik,項目名稱:dmaps,代碼行數:16,代碼來源:ViewsBlockTest.php

示例3: testBuildFailed

 /**
  * Tests the build method with a failed execution.
  *
  * @see \Drupal\views\Plugin\block\ViewsBlock::build()
  */
 public function testBuildFailed()
 {
     $output = FALSE;
     $this->executable->expects($this->once())->method('executeDisplay')->with($this->equalTo('block_1'))->will($this->returnValue($output));
     $block_id = 'views_block:test_view-block_1';
     $config = array();
     $definition = array();
     $definition['provider'] = 'views';
     $plugin = new ViewsBlock($config, $block_id, $definition, $this->executableFactory, $this->storage, $this->account);
     $reflector = new \ReflectionClass($plugin);
     $property = $reflector->getProperty('conditionPluginManager');
     $property->setAccessible(TRUE);
     $property->setValue($plugin, $this->getMock('Drupal\\Core\\Executable\\ExecutableManagerInterface'));
     $this->assertEquals(array(), $plugin->build());
 }
開發者ID:anatalsceo,項目名稱:en-classe,代碼行數:20,代碼來源:ViewsBlockTest.php

示例4: testBuildOverride

 /**
  * Tests the build method with overriding items per page.
  */
 public function testBuildOverride()
 {
     $this->executable->expects($this->once())->method('setItemsPerPage')->with(5);
     $this->blockPlugin->expects($this->once())->method('getConfiguration')->will($this->returnValue(array('items_per_page' => 5)));
     $this->blockDisplay->preBlockBuild($this->blockPlugin);
 }
開發者ID:ddrozdik,項目名稱:dmaps,代碼行數:9,代碼來源:BlockTest.php


注:本文中的Drupal\views\ViewExecutable::expects方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。