本文整理汇总了PHP中EcomDev_PHPUnit_Test_Case类的典型用法代码示例。如果您正苦于以下问题:PHP EcomDev_PHPUnit_Test_Case类的具体用法?PHP EcomDev_PHPUnit_Test_Case怎么用?PHP EcomDev_PHPUnit_Test_Case使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了EcomDev_PHPUnit_Test_Case类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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();
}
示例2: getResourceCollectionModelMock
/**
* replaces a model resource collection
* @param $classAlias
* @param $dataValues
* @return PHPUnit_Framework_MockObject_MockObject
*/
public function getResourceCollectionModelMock($classAlias, $dataValues)
{
$mockPage1 = $this->getObjectMockGetData($dataValues[0]);
$mockPage2 = $this->getObjectMockGetData($dataValues[1]);
$iteratorValues = array($mockPage1, $mockPage2);
$resourceCmsPageCollection = $this->testCase->getResourceModelMock($classAlias, array(), FALSE, array(), '', FALSE);
$resourceCmsPageCollection->expects($this->testCase->any())->method('getIterator')->will($this->testCase->returnValue(new ArrayIterator($iteratorValues)));
return $resourceCmsPageCollection;
}
示例3: 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
示例4: 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);
}
示例5: setUp
public function setUp()
{
parent::setup();
$this->_helper = Mage::helper('ops/payment');
$this->store = Mage::app()->getStore(0)->load(0);
$this->store->resetConfig();
}
示例6: tearDown
protected function tearDown()
{
parent::tearDown();
$couponTable = Mage::getSingleton('core/resource')->getTableName('collpur/coupon');
$write = Mage::getSingleton('core/resource')->getConnection('core_write');
$write->truncate($couponTable);
}
示例7: 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);
}
示例8: setUp
protected function setUp()
{
parent::setUp();
$this->helper = Mage::helper('helpdesk/mail');
$this->helper->emails = array();
$this->markTestSkipped('We don"t use this testclass.');
}
示例9: 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');
}
示例10: tearDown
protected function tearDown()
{
$collection = $this->getTestCronScheduleCollection();
foreach ($collection as $item) {
$item->delete();
}
parent::tearDown();
}
示例11: 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);
}
示例12: 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);
}
示例13: 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();
}
示例14: 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);
}
}
示例15: setUp
protected function setUp()
{
parent::setUp();
$resource = Mage::getSingleton('core/resource');
$con = $resource->getConnection('core_write');
$con->query("delete from {$resource->getTableName('helpdesk/email')}");
$this->helper = Mage::helper('helpdesk/fetch');
$this->mailbox = $this->createMailbox('test-message');
}