1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?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: TestConfiguration.php.dist 23752 2011-02-20 13:12:46Z ramon $
*/
/**
* 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');
|