TestConfiguration.php.dist 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category ZendX
  16. * @package UnitTests
  17. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  18. * @license http://framework.zend.com/license/new-bsd New BSD License
  19. * @version $Id$
  20. */
  21. /**
  22. * This file defines configuration for running the unit tests for the Zend
  23. * Framework. Some tests have dependencies to PHP extensions or databases
  24. * which may not necessary installed on the target system. For these cases,
  25. * the ability to disable or configure testing is provided below. Tests for
  26. * components which should run universally are always run by the master
  27. * suite and cannot be disabled.
  28. *
  29. * Do not edit this file. Instead, copy this file to TestConfiguration.php,
  30. * and edit the new file. Never commit plaintext passwords to the source
  31. * code repository.
  32. */
  33. /**
  34. * ZendX_Db_Adapter_Firebird
  35. */
  36. define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_ENABLED', false);
  37. define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_HOSTNAME', '');
  38. define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_PORT', 3050);
  39. define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_USERNAME', 'sysdba');
  40. define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_PASSWORD', 'masterkey');
  41. define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_DATABASE', 'C:\fbtest.fdb'); //must be DOS name
  42. define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_BINPATH', 'C:/Program Files/Firebird/Firebird_2_1/bin/'); //don't forget last slash
  43. /**
  44. * PHPUnit Code Coverage / Test Report
  45. */
  46. define('TESTS_GENERATE_REPORT', false);
  47. define('TESTS_GENERATE_REPORT_TARGET', '/path/to/target');