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


PHP ObjectProphecy::getLastRevision方法代码示例

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


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

示例1: testRefreshWithCache

 /**
  * @dataProvider repositoryUrlDataProvider
  */
 public function testRefreshWithCache($repository_url, $plugin_last_revision)
 {
     $collected_data = array('mocked' => array('OLD_COLLECTED'));
     $cache_invalidator = new RegExToken('/^main:[\\d]+;plugin\\(mocked\\):[\\d]+$/');
     if (!isset($plugin_last_revision)) {
         $this->repositoryConnector->getFirstRevision('svn://localhost')->willReturn(1000)->shouldBeCalled();
     }
     $this->repositoryConnector->getLastRevision('svn://localhost')->willReturn(1000)->shouldBeCalled();
     $this->repositoryConnector->getProjectUrl($repository_url)->willReturn('svn://localhost')->shouldBeCalled();
     $this->cacheManager->getCache('log:svn://localhost', $cache_invalidator)->willReturn($collected_data)->shouldBeCalled();
     $plugin = $this->prophesize('ConsoleHelpers\\SVNBuddy\\Repository\\RevisionLog\\IRevisionLogPlugin');
     $plugin->getName()->willReturn('mocked')->shouldBeCalled();
     $plugin->getCacheInvalidator()->willReturn(5)->shouldBeCalled();
     $plugin->setCollectedData($collected_data['mocked'])->shouldBeCalled();
     $plugin->getLastRevision()->willReturn($plugin_last_revision)->shouldBeCalled();
     $revision_log = $this->createRevisionLog($repository_url);
     $revision_log->registerPlugin($plugin->reveal());
     $revision_log->refresh();
 }
开发者ID:aik099,项目名称:svn-buddy,代码行数:22,代码来源:RevisionLogTest.php

示例2: testRefreshWithCache

 public function testRefreshWithCache()
 {
     $this->repositoryConnector->getLastRevision('svn://localhost')->willReturn(1000)->shouldBeCalled();
     $revision_log = $this->createRevisionLog('svn://localhost/projects/project-name/trunk');
     // Add repository collector plugin.
     $repository_collector_plugin = $this->prophesize('ConsoleHelpers\\SVNBuddy\\Repository\\RevisionLog\\Plugin\\IRepositoryCollectorPlugin');
     $repository_collector_plugin->getName()->willReturn('mocked_repo')->shouldBeCalled();
     $repository_collector_plugin->setRevisionLog($revision_log)->shouldBeCalled();
     $repository_collector_plugin->whenDatabaseReady()->shouldBeCalled();
     $repository_collector_plugin->getLastRevision()->willReturn(1000)->shouldBeCalled();
     // Add database collector plugin.
     $database_collector_plugin = $this->prophesize('ConsoleHelpers\\SVNBuddy\\Repository\\RevisionLog\\Plugin\\IDatabaseCollectorPlugin');
     $database_collector_plugin->getName()->willReturn('mocked_db')->shouldBeCalled();
     $database_collector_plugin->setRevisionLog($revision_log)->shouldBeCalled();
     $database_collector_plugin->whenDatabaseReady()->shouldBeCalled();
     $database_collector_plugin->getLastRevision()->willReturn(1000)->shouldBeCalled();
     $revision_log->registerPlugin($repository_collector_plugin->reveal());
     $revision_log->registerPlugin($database_collector_plugin->reveal());
     $revision_log->refresh(false);
 }
开发者ID:console-helpers,项目名称:svn-buddy,代码行数:20,代码来源:RevisionLogTest.php


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