dav-m85 / magento-mock
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 5 095
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
This package is not auto-updated.
Last update: 2022-06-11 05:30:52 UTC
README
Magento mock
Hat trick to have Mage class mocked.
Installation
Setup autoloading
// Register Varien autoloader for Mage related stuff include_once "Varien/Autoload.php"; include_once "core/Mage/Core/functions.php"; spl_autoload_register(array(Varien_Autoload::instance(), 'autoload')); // Mock Mage instance include_once "Mage.php"; include_once "MageMockInterface.php";
Usage
class CustomerTest extends PHPUnit_Framework_TestCase { private $mage; public function setUp() { $this->mage = $this->prophesize("MageMockInterface"); Mage::setMageInstance($this->mage->reveal()); // Getting an helper ? $this->mage->helper('some-helper')->willReturn(...); // New Model ? $this->mage->getResourceSingleton("customer/customer", \Prophecy\Argument::cetera())->willReturn( $this->prophesize('Mage_Core_Model_Resource_Db_Abstract')->reveal() ); } public function testSomething() { ... }