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


PHP EcomDev_PHPUnit_Test_Case::setUp方法代码示例

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


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

示例1: setUp

 /**
  * Initializes model under test and disables events
  * for checking logic in isolation from custom its customizations
  *
  * (non-PHPdoc)
  * @see EcomDev_PHPUnit_Test_Case::setUp()
  */
 protected function setUp()
 {
     parent::setUp();
     $this->model = Mage::getModel('getfinancing/paymentMethod');
     $this->app()->disableEvents();
     $this->getfinancing = new GetFinancing_Magento($this->model);
 }
开发者ID:GetFinancing,项目名称:getfinancing-magento,代码行数:14,代码来源:PaymentMethod.php

示例2: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->helper = Mage::helper('helpdesk/notification');
     $this->helper->emails = array();
     Mage::helper('msttest/mock')->mockSingletonMethod('helpdesk/config', array('getNotificationHistoryRecordsNumber' => 3));
 }
开发者ID:cesarfelip3,项目名称:clevermage_new,代码行数:7,代码来源:Mirasvit_Helpdesk_Test_Helper_NotificationTest.php

示例3: setUp

 /**
  * setUp method
  */
 public function setUp()
 {
     parent::setUp();
     // checking if var directory exists, if not, then create it
     if (!is_dir(Mage::getBaseDir('var'))) {
         umask(0);
         mkdir(Mage::getBaseDir('var'), 0777, true);
     }
     // checking if log directory exists, if not, then create it
     if (!is_dir(Mage::getBaseDir('log'))) {
         umask(0);
         mkdir(Mage::getBaseDir('log'), 0777, true);
     }
     // checking if var/log/system.log file exist, if not create it
     if (!file_exists(Mage::getBaseDir('log') . DS . 'system.log')) {
         file_put_contents(Mage::getBaseDir('log') . DS . 'system.log', '');
     }
     // checking if var/log/exception.log file exist, if not create it
     if (!file_exists(Mage::getBaseDir('log') . DS . 'exception.log')) {
         file_put_contents(Mage::getBaseDir('log') . DS . 'exception.log', '');
     }
     // Preventing actual e-mail from being sent.
     $email = $this->getModelMock('ebayenterprise_magelog/logger_email', ['send']);
     $email->expects($this->any())->method('send')->will($this->returnSelf());
     $this->replaceByMock('model', 'ebayenterprise_magelog/logger_email', $email);
 }
开发者ID:kojiromike,项目名称:magento-log,代码行数:29,代码来源:StreamTest.php

示例4: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->helper = Mage::helper('helpdesk/mail');
     $this->helper->emails = array();
     $this->markTestSkipped('We don"t use this testclass.');
 }
开发者ID:cesarfelip3,项目名称:clevermage_new,代码行数:7,代码来源:Mirasvit_Helpdesk_Test_Helper_MailTest.php

示例5: setUp

 /**
  * Set up test class
  */
 protected function setUp()
 {
     parent::setUp();
     $this->_model = Mage::getModel('debit/entity_customer_attribute_backend_encrypted');
     $attribute = Mage::getModel('eav/entity_attribute')->loadByCode('customer', 'debit_payment_account_swift');
     $this->_model->setAttribute($attribute);
 }
开发者ID:dedlich,项目名称:Magento-DebitPayment,代码行数:10,代码来源:Encrypted.php

示例6: setUp

 public function setUp()
 {
     parent::setUp();
     $this->shipping = Mage::getModel('shipping/shipping');
     $this->observer = $this->getModelMock('checkoutrule/observer', array('shippingMethods'));
     $this->observer->expects($this->any())->method('shippingMethods')->will($this->returnCallback(array($this, 'processShippingMethods')));
     $this->replaceByMock('model', 'checkoutrule/observer', $this->observer);
 }
开发者ID:Hospeed,项目名称:Inovarti_PromoFilter,代码行数:8,代码来源:Shipping.php

示例7: setUp

 /**
  * Sets everything for a new test. parent::setUp() is necessary to enable fixtures.
  */
 protected function setUp()
 {
     parent::setUp();
     $this->object = new ZerebroInternet_Barzahlen_Model_Adminexceptions_Maxordertotal();
     $this->object->setScope('default');
     $this->object->setScopeId(0);
     $this->object->setPath('payment/barzahlen/max_order_total');
 }
开发者ID:KaiBerkemeyer,项目名称:Barzahlen-Magento-1,代码行数:11,代码来源:Maxordertotal.php

示例8: setUp

 /**
  * Set up controller params
  * (non-PHPdoc)
  * @see EcomDev_PHPUnit_Test_Case::setUp()
  */
 protected function setUp()
 {
     EcomDev_PHPUnit_Test_Case::setUp();
     $this->reset();
     //$this->registerCookieStub(); fix exception
     $this->getCookies()->reset();
     $this->app()->getFrontController()->init();
 }
开发者ID:all-bear,项目名称:magento.cg-cms,代码行数:13,代码来源:IndexController.php

示例9: setUp

 public function setUp()
 {
     parent::setUp();
     $this->_context = Mage::helper('ebayenterprise_magelog/context');
     // suppressing the real session from starting
     $session = $this->getModelMockBuilder('core/session')->disableOriginalConstructor()->setMethods(null)->getMock();
     $this->replaceByMock('singleton', 'core/session', $session);
 }
开发者ID:kojiromike,项目名称:magento-log,代码行数:8,代码来源:ContextTest.php

示例10: setUp

 /**
  * Sets everything for a new test. parent::setUp() is necessary to enable fixtures.
  */
 protected function setUp()
 {
     parent::setUp();
     $this->object = new ZerebroInternet_Barzahlen_Model_Adminexceptions_Paymentkey();
     $this->object->setScope('default');
     $this->object->setScopeId(0);
     $this->object->setPath('payment/barzahlen/payment_key');
 }
开发者ID:KaiBerkemeyer,项目名称:Barzahlen-Magento-1,代码行数:11,代码来源:Paymentkey.php

示例11: setUp

 public function setUp()
 {
     parent::setUp();
     $payment = Mage::getModel('sales/order_payment');
     $payment->setAdditionalInformation('CC_BRAND', 'VISA');
     $this->testObjects[] = Mage::getModel('ops/payment_cc')->setInfoInstance($payment);
     $this->testObjects[] = Mage::getModel('ops/payment_directDebit');
 }
开发者ID:roshu1980,项目名称:add-computers,代码行数:8,代码来源:DirectLinkTest.php

示例12: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->_removeAttribute();
     $this->_addAttribute();
     $this->_block = $this->app()->getLayout()->createBlock('adminhtml/catalog_product_attribute_edit_tab_options');
     $this->app()->addEventArea('adminhtml');
 }
开发者ID:giuseppemorelli,项目名称:IntegerNet_AttributeOptionPager,代码行数:8,代码来源:Tab.php

示例13: setUp

 /**
  * Set up test class
  */
 protected function setUp()
 {
     parent::setUp();
     $this->_model = Mage::getModel('debit/debit');
     $infoInstance = Mage::getModel('payment/info');
     $infoInstance->setMethod($this->_model->getCode());
     $infoInstance->setMethodInstance($this->_model);
     $this->_model->setData('info_instance', $infoInstance);
 }
开发者ID:dedlich,项目名称:Magento-DebitPayment,代码行数:12,代码来源:Debit.php

示例14: setUp

 public function setUp()
 {
     parent::setUp();
     $this->_data = Mage::getModel('productquestions/productquestions');
     $this->_sess = Mage::getSingleton('core/session');
     $this->_customersess = Mage::getSingleton('customer/session');
     $this->_adminUrl = Mage::getSingleton('adminhtml/url');
     $this->_resource = Mage::getModel('productquestions/productquestions')->getResource();
 }
开发者ID:bigtailbear14,项目名称:rosstheme,代码行数:9,代码来源:AW_Productquestions_Test_Model_Productquestions.php

示例15: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->helper = Mage::helper('helpdesk/process');
     $this->mockConfigMethod(array('getDefaultStatus' => 1, 'getContactFormDefaultDepartment' => 2, 'getDefaultPriority' => 3, 'getNotificationIsShowCode' => true));
     if (!Mage::registry('isSecureArea')) {
         Mage::register('isSecureArea', true);
     }
 }
开发者ID:cesarfelip3,项目名称:clevermage_new,代码行数:9,代码来源:Mirasvit_Helpdesk_Test_Helper_ProcessTest.php


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