| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * 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@zend.com so we can send you a copy immediately.
- *
- * @category ZendX
- * @package UnitTests
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * This file defines configuration for running the unit tests for the Zend
- * Framework. Some tests have dependencies to PHP extensions or databases
- * which may not necessary installed on the target system. For these cases,
- * the ability to disable or configure testing is provided below. Tests for
- * components which should run universally are always run by the master
- * suite and cannot be disabled.
- *
- * Do not edit this file. Instead, copy this file to TestConfiguration.php,
- * and edit the new file. Never commit plaintext passwords to the source
- * code repository.
- */
- /**
- * ZendX_Db_Adapter_Firebird
- */
- define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_ENABLED', false);
- define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_HOSTNAME', '');
- define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_PORT', 3050);
- define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_USERNAME', 'sysdba');
- define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_PASSWORD', 'masterkey');
- define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_DATABASE', 'C:\fbtest.fdb'); //must be DOS name
- define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_BINPATH', 'C:/Program Files/Firebird/Firebird_2_1/bin/'); //don't forget last slash
- /**
- * PHPUnit Code Coverage / Test Report
- */
- define('TESTS_GENERATE_REPORT', false);
- define('TESTS_GENERATE_REPORT_TARGET', '/path/to/target');
|