本文整理汇总了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);
}
示例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);
}
示例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.');
}
示例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);
}
示例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);
}
示例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');
}
示例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();
}
示例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);
}
示例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');
}
示例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');
}
示例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');
}
示例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);
}
示例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();
}
示例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);
}
}