コード例 #1
0
ファイル: bootstrap.php プロジェクト: ridhoq/mxpi-twitter
 * This source file is subject to the Open Software License (OSL 3.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')));
コード例 #2
0
 /**
  * @covers Mage_Selenium_Autoloader::autoload
  */
 public function testAutoload()
 {
     $this->assertFalse(Mage_Selenium_Autoloader::autoload('not-existing-class'));
     $className = 'Mage_Selenium_Autoloader';
     $this->assertTrue(Mage_Selenium_Autoloader::autoload($className));
 }