当前位置: 首页>>代码示例>>PHP>>正文


PHP ObjectProphecy::setFirstResult方法代码示例

本文整理汇总了PHP中Prophecy\Prophecy\ObjectProphecy::setFirstResult方法的典型用法代码示例。如果您正苦于以下问题:PHP ObjectProphecy::setFirstResult方法的具体用法?PHP ObjectProphecy::setFirstResult怎么用?PHP ObjectProphecy::setFirstResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Prophecy\Prophecy\ObjectProphecy的用法示例。


在下文中一共展示了ObjectProphecy::setFirstResult方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testApplyToCollectionPaginationDisabled

 public function testApplyToCollectionPaginationDisabled()
 {
     /** @var ObjectProphecy|Request $requestMock */
     $requestMock = $this->prophesize('Symfony\\Component\\HttpFoundation\\Request');
     /* @see PaginationExtension::applyToCollection */
     $this->requestStackMock->getCurrentRequest()->willReturn($requestMock->reveal())->shouldBeCalledTimes(1);
     /* @see PaginationExtension::isPaginationEnabled */
     $this->resourceMock->getEnablePaginationParameter()->willReturn('enablePagination')->shouldBeCalledTimes(1);
     $requestMock->get('enablePagination')->willReturn('true')->shouldBeCalledTimes(1);
     $this->resourceMock->isClientAllowedToEnablePagination()->willReturn(false)->shouldBeCalledTimes(1);
     $this->resourceMock->isPaginationEnabledByDefault()->willReturn(false)->shouldBeCalledTimes(1);
     /* @see PaginationExtension::getItemsPerPage */
     $this->resourceMock->isClientAllowedToChangeItemsPerPage()->shouldNotBeCalled();
     $this->resourceMock->getItemsPerPageParameter()->shouldNotBeCalled();
     $requestMock->get('itemsPerPage')->shouldNotBeCalled();
     /* @see PaginationExtension::getPage */
     $this->resourceMock->getPageParameter()->shouldNotBeCalled();
     $requestMock->get('page', 1)->shouldNotBeCalled();
     /* @see PaginationExtension::applyToCollection */
     $this->queryBuilderMock->setFirstResult(Argument::any())->shouldNotBeCalled();
     $this->queryBuilderMock->setMaxResults(Argument::any())->shouldNotBeCalled();
     $extension = new PaginationExtension($this->managerRegistryMock->reveal(), $this->requestStackMock->reveal());
     $extension->applyToCollection($this->resourceMock->reveal(), $this->queryBuilderMock->reveal());
 }
开发者ID:akomm,项目名称:DunglasApiBundle,代码行数:24,代码来源:PaginationExtensionTest.php

示例2: setFirstResultDelegatesToConcreteQueryBuilder

 /**
  * @test
  */
 public function setFirstResultDelegatesToConcreteQueryBuilder()
 {
     $this->concreteQueryBuilder->setFirstResult(Argument::cetera())->shouldBeCalled()->willReturn($this->subject);
     $this->subject->setFirstResult(1);
 }
开发者ID:dachcom-digital,项目名称:TYPO3.CMS,代码行数:8,代码来源:QueryBuilderTest.php


注:本文中的Prophecy\Prophecy\ObjectProphecy::setFirstResult方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。