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


PHP PHPUnit_Framework_MockObject_MockObject::startTest方法代码示例

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


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

示例1: testInitStoreAfter

 /**
  * @magentoAdminConfigFixture any_config some_value
  */
 public function testInitStoreAfter()
 {
     $this->_object->startTest($this);
     $this->_object->expects($this->at(0))->method('_getConfigValue')->with('any_config')->will($this->returnValue('some_value'));
     $this->_object->expects($this->at(1))->method('_setConfigValue')->with('any_config', 'some_value');
     $this->_object->initStoreAfter();
 }
开发者ID:andrewhowdencom,项目名称:m2onk8s,代码行数:10,代码来源:AdminConfigFixtureTest.php

示例2: testInitStoreAfter

 /**
  * @magentoConfigFixture current_store web/unsecure/base_url http://example.com/
  */
 public function testInitStoreAfter()
 {
     $this->_object->startTest($this);
     $this->_object->expects($this->at(0))->method('_getConfigValue')->with('web/unsecure/base_url')->will($this->returnValue('http://localhost/'));
     $this->_object->expects($this->at(1))->method('_setConfigValue')->with('web/unsecure/base_url', 'http://example.com/');
     $this->_object->initStoreAfter();
 }
开发者ID:aiesh,项目名称:magento2,代码行数:10,代码来源:ConfigFixtureTest.php

示例3: testSpecificStoreConfig

 /**
  * @magentoConfigFixture admin_store dev/restrict/allow_ips 192.168.0.2
  */
 public function testSpecificStoreConfig()
 {
     $this->_annotation->expects($this->at(0))->method('_getConfigValue')->with('dev/restrict/allow_ips', 'admin')->will($this->returnValue('192.168.0.1'));
     $this->_annotation->expects($this->at(1))->method('_setConfigValue')->with('dev/restrict/allow_ips', '192.168.0.2', 'admin');
     $this->_annotation->startTest();
     $this->_annotation->expects($this->once())->method('_setConfigValue')->with('dev/restrict/allow_ips', '192.168.0.1', 'admin');
     $this->_annotation->endTest();
 }
开发者ID:natxetee,项目名称:magento2,代码行数:11,代码来源:ConfigTest.php

示例4: testEndTestSuiteRollbackTransaction

 public function testEndTestSuiteRollbackTransaction()
 {
     $this->_imitateTransactionStartRequest('startTestTransactionRequest');
     $this->_object->startTest($this);
     $this->_expectTransactionRollback($this->once());
     $this->_object->endTestSuite();
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:7,代码来源:TransactionTest.php

示例5: testRevertFixtureFile

 /**
  * @magentoDataFixture path/to/fixture/script.php
  * @magentoDataFixture ../framework/tests/unit/testsuite/Magento/Test/Listener/_files/sample_fixture_two.php
  * @covers Magento_Test_Listener_Annotation_Fixture::_revertFixture
  */
 public function testRevertFixtureFile()
 {
     $this->_annotation->startTest();
     $this->_annotation->expects($this->at(1))->method('_applyOneFixture')->with($this->stringEndsWith('Magento/Test/Listener/_files/sample_fixture_two_rollback.php'));
     $this->_annotation->endTest();
 }
开发者ID:natxetee,项目名称:magento2,代码行数:11,代码来源:FixtureTest.php


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