コード例 #1
0
ファイル: FirstTest.php プロジェクト: beejhuff/mageunit
 public function testHelperMockWasRegistered()
 {
     $this->_subject->setHelper('core/data', new stdClass());
     $this->assertInstanceOf('stdClass', Mage::helper('core/data'));
 }
コード例 #2
0
ファイル: TestCaseTest.php プロジェクト: beejhuff/mageunit
 public function testSetHelperWithDataSuffixAndCalledWithout()
 {
     $this->_subject->setHelper('core/data', new stdClass());
     $this->assertInstanceOf('stdClass', Mage::helper('core'));
 }