Beispiel #1
0
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    tests
 * @package     selenium2
 * @subpackage  runner
 * @author      Magento Core Team <*****@*****.**>
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */
require_once '../framework/bootstrap.php';
define('SELENIUM_TESTS_BASEDIR', dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'selenium2');
//define('SELENIUM_TESTS_SCREENSHOTDIR',getenv('SELENIUM_TESTS_SCREENSHOTDIR'));
//define('SELENIUM_TESTS_SCREENSHOTURL',getenv('SELENIUM_TESTS_SCREENSHOTURL'));
set_include_path(implode(PATH_SEPARATOR, array(realpath(SELENIUM_TESTS_BASEDIR . DIRECTORY_SEPARATOR . 'framework'), realpath(SELENIUM_TESTS_BASEDIR . DIRECTORY_SEPARATOR . 'testsuite'), get_include_path())));
require_once 'Mage/Selenium/Autoloader.php';
Mage_Selenium_Autoloader::register();
require_once 'functions.php';
Mage_Selenium_TestConfiguration::getInstance();
Mage_Listener_EventListener::autoAttach(SELENIUM_TESTS_BASEDIR . implode(DIRECTORY_SEPARATOR, array('', 'framework', 'Mage', 'Listener', 'Observers', '*.php')));
Beispiel #2
0
 public function testFailed(Mage_Listener_EventListener $listener)
 {
     $listener->getCurrentTest();
 }
 /**
  * @covers Mage_Listener_EventListener::endTest
  * @covers Mage_Listener_EventListener::getCurrentTest
  */
 public function testEndTest()
 {
     $observerMock = $this->getMock('Mage_Listener_Observers_EmptyObserver', array('endTest'));
     $testCaseMock = $this->getMockForAbstractClass('PHPUnit_Framework_TestCase');
     Mage_Listener_EventListener::attach($observerMock);
     $this->_observersMock[] = $observerMock;
     $instance = new Mage_Listener_EventListener();
     $observerMock->expects($this->once())->method('endTest')->with($this->equalTo($instance));
     $instance->startTest($testCaseMock, new Exception(), time());
     $instance->endTest($testCaseMock, new Exception(), time());
     $this->assertEquals($testCaseMock, $instance->getCurrentTest());
 }