DB2_I5_TXN_READ_UNCOMITTED, 'autocommit' => DB2_AUTOCOMMIT_OFF, 'i5_lib' => 'CUSTOMER'); /** * Zend_Db_Adapter_Sqlsrv * Note: Make sure that you create the "test" database and set a * username and password * */ define('TESTS_ZEND_DB_ADAPTER_SQLSRV_ENABLED', false); define('TESTS_ZEND_DB_ADAPTER_SQLSRV_HOSTNAME', 'localhost\SQLEXPRESS'); define('TESTS_ZEND_DB_ADAPTER_SQLSRV_USERNAME', null); define('TESTS_ZEND_DB_ADAPTER_SQLSRV_PASSWORD', null); define('TESTS_ZEND_DB_ADAPTER_SQLSRV_DATABASE', 'test'); /** * Zend_Db_Adapter_Pdo_Odbc */ define('TESTS_ZEND_DB_ADAPTER_PDO_ODBC_ENABLED', false); define('TESTS_ZEND_DB_ADAPTER_PDO_ODBC_USERNAME', null); define('TESTS_ZEND_DB_ADAPTER_PDO_ODBC_PASSWORD', null); define('TESTS_ZEND_DB_ADAPTER_PDO_ODBC_DATABASE', null); /** * Zend_Db_Adapter_Firebird and Zend_Db_Adapter_Pdo_Firebird * */ define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_ENABLED', false); define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_HOSTNAME', '127.0.0.1'); define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_USERNAME', 'sysdba'); define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_PASSWORD', 'masterkey'); define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_DATABASE', 'TEST'); define('TESTS_ZEND_DB_ADAPTER_FIREBIRD_PORT', '3050'); /** * Zend_Http_Client tests * * To enable the dynamic Zend_Http_Client tests, you will need to symbolically * link or copy the files in tests/Zend/Http/Client/_files to a directory * under your web server(s) document root and set this constant to point to the * URL of this directory. */ define('TESTS_ZEND_HTTP_CLIENT_BASEURI', false); /** * Zend_Service_DeveloperGarden tests * Setup your Username and Password to test this Service */ define('TESTS_ZEND_SERVICE_DEVELOPERGARDEN_ONLINE_ENABLED', false); define('TESTS_ZEND_SERVICE_DEVELOPERGARDEN_ONLINE_LOGIN', 'ZF_Username'); define('TESTS_ZEND_SERVICE_DEVELOPERGARDEN_ONLINE_PASSWORD', 'ZF_Password'); /** * Zend_Locale tests * * If the TESTS_ZEND_LOCALE_FORMAT_SETLOCALE property below is a valid, * locally recognized locale (try "locale -a"), then all tests in * tests/Zend/Locale/ test suites will execute *after* * setlocale(LC_ALL, TESTS_ZEND_LOCALE_FORMAT_SETLOCALE); * Primarily, this switches certain PHP functions to emit "localized" output, * including the built-in "to string" for integer and float conversions. * Thus, a locale of 'fr_FR' yields number-to-string conversions in a * localized form with the decimal place separator chosen via: * setlocale(LC_ALL, 'fr_FR@euro'); */ //define('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE', 'fr'); //define('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE', 'fr_FR@euro'); define('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE', false); /** * Zend_Service_LiveDocx configuration * * Define username and password in order to run unit tests for LiveDocX web * services. * * phpunit/phpunit will typically work. */ define('TESTS_ZEND_SERVICE_LIVEDOCX_USERNAME', false); define('TESTS_ZEND_SERVICE_LIVEDOCX_PASSWORD', false); /** * Zend_Service_Tumblr test account credentials */ define('TESTS_ZEND_SERVICE_TUMBLR_ONLINE_ENABLED', true); define('TESTS_ZEND_SERVICE_TUMBLR_TUMBLELOG_URL', 'apiiotestuser.tumblr.com'); define('TESTS_ZEND_SERVICE_TUMBLR_EMAIL', 'api.io.test@gmail.com'); define('TESTS_ZEND_SERVICE_TUMBLR_PASSWORD', 'apiiotestuser'); /** * Zend_Service_Ebay online tests */ define('TESTS_ZEND_SERVICE_EBAY_ONLINE_ENABLED', false); define('TESTS_ZEND_SERVICE_EBAY_ONLINE_APPID', 'Enter APPID here'); /** * Zend_Serializer_Adapter_* */ define('TESTS_ZEND_SERIALIZER_ADAPTER_WDDX_ENABLED', false); define('TESTS_ZEND_SERIALIZER_ADAPTER_IGBINARY_ENABLED', false); /** * PHPUnit Code Coverage / Test Report */ define('TESTS_GENERATE_REPORT', false); define('TESTS_GENERATE_REPORT_TARGET', '/path/to/target');