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


PHP ObjectProphecy::getProjectUrl方法代碼示例

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


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

示例1: createRevisionLog

 /**
  * Creates revision log.
  *
  * @param string    $repository_url Repository url.
  * @param ConsoleIO $io             Console IO.
  *
  * @return RevisionLog
  */
 protected function createRevisionLog($repository_url, ConsoleIO $io = null)
 {
     $this->repositoryConnector->getRootUrl($repository_url)->willReturn('svn://localhost')->shouldBeCalled();
     $this->repositoryConnector->getRelativePath($repository_url)->willReturn('/projects/project-name/trunk')->shouldBeCalled();
     $this->repositoryConnector->getProjectUrl('/projects/project-name/trunk')->willReturn('/projects/project-name')->shouldBeCalled();
     $this->repositoryConnector->getRefByPath('/projects/project-name/trunk')->willReturn('trunk')->shouldBeCalled();
     $revision_log = new RevisionLog($repository_url, $this->repositoryConnector->reveal(), $io);
     return $revision_log;
 }
開發者ID:console-helpers,項目名稱:svn-buddy,代碼行數:17,代碼來源:RevisionLogTest.php

示例2: 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

示例3: testResolve

 /**
  * @dataProvider resolveDataProvider
  */
 public function testResolve($wc_url, $url_to_resolve, $resolved_url)
 {
     $this->connector->getProjectUrl($wc_url)->willReturn('svn://user@domain.com/path/to/project');
     $this->assertEquals($resolved_url, $this->urlResolver->resolve($wc_url, $url_to_resolve));
 }
開發者ID:console-helpers,項目名稱:svn-buddy,代碼行數:8,代碼來源:UrlResolverTest.php


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