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


PHP ObjectProphecy::getWorkingCopyUrl方法代碼示例

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


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

示例1: testGetWorkingCopyUrlFromPath

 public function testGetWorkingCopyUrlFromPath()
 {
     $this->createTempFolder();
     $this->connector->isUrl($this->tempFolder)->willReturn(false);
     $this->connector->isWorkingCopy($this->tempFolder)->willReturn(true);
     $this->connector->getWorkingCopyUrl($this->tempFolder)->willReturn('svn://repository.com');
     $this->assertEquals('svn://repository.com', $this->workingCopyResolver->getWorkingCopyUrl($this->tempFolder), 'Cache Miss');
     $this->assertEquals('svn://repository.com', $this->workingCopyResolver->getWorkingCopyUrl($this->tempFolder), 'Cache Hit');
 }
開發者ID:console-helpers,項目名稱:svn-buddy,代碼行數:9,代碼來源:WorkingCopyResolverTest.php

示例2: prepareMergeResult

 protected function prepareMergeResult()
 {
     $this->connector->getFreshMergedRevisions('/path/to/working-copy')->willReturn(array('/projects/project-name/trunk' => array('18', '33'), '/projects/project-name/branches/branch-name' => array('4')));
     $this->connector->getWorkingCopyUrl('/path/to/working-copy')->willReturn('svn://repository.com/path/to/project/tags/stable');
     $this->connector->getRootUrl('svn://repository.com/path/to/project/tags/stable')->willReturn('svn://repository.com');
     $revision_log1 = $this->getRevisionLog('svn://repository.com/projects/project-name/trunk');
     $revision_log1->getRevisionsData('summary', array(18, 33))->willReturn(array(18 => array('author' => 'user1', 'date' => 3534535353, 'msg' => 'a-line1' . PHP_EOL . 'a-line2' . PHP_EOL . PHP_EOL), 33 => array('author' => 'user2', 'date' => 35345445353, 'msg' => 'b-line1' . PHP_EOL . 'b-line2' . PHP_EOL . PHP_EOL)));
     $revision_log2 = $this->getRevisionLog('svn://repository.com/projects/project-name/branches/branch-name');
     $revision_log2->getRevisionsData('summary', array(4))->willReturn(array(4 => array('author' => 'user2', 'date' => 35345444353, 'msg' => 'c-line1' . PHP_EOL . 'c-line2' . PHP_EOL . PHP_EOL)));
 }
開發者ID:console-helpers,項目名稱:svn-buddy,代碼行數:10,代碼來源:AbstractMergeTemplateTestCase.php

示例3: testSetWorkingCopySetting

 public function testSetWorkingCopySetting()
 {
     $this->configEditor->get('global-settings.sample_name', '')->willReturn('global_value');
     $setting_name = 'path-settings[svn://localhost].sample_name';
     $this->configEditor->get($setting_name)->willReturn('old_value');
     $this->configEditor->set($setting_name, 'new_value')->will(function (array $args, $object) {
         $object->get($args[0])->willReturn($args[1]);
     });
     $this->command->getConfigSettings()->willReturn(array(new StringConfigSetting('sample_name', '', AbstractConfigSetting::SCOPE_WORKING_COPY)));
     $this->workingCopyResolver->getWorkingCopyUrl('/path/to/working-copy')->willReturn('svn://localhost');
     $this->commandConfig->setSettingValue('sample_name', $this->command->reveal(), '/path/to/working-copy', 'new_value');
     $this->assertEquals('new_value', $this->commandConfig->getSettingValue('sample_name', $this->command->reveal(), '/path/to/working-copy'));
 }
開發者ID:console-helpers,項目名稱:svn-buddy,代碼行數:13,代碼來源:CommandConfigTest.php


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