the WordPress codebase you'd like to test. Add a backslash in the end. */ define( 'ABSPATH', '/path/to/your/site' ); define( 'DB_NAME', 'wordpress_tests' ); define( 'DB_USER', 'your_username' ); define( 'DB_PASSWORD', 'your_password' ); define( 'DB_HOST', 'localhost' ); define( 'DB_CHARSET', 'utf8' ); define( 'DB_COLLATE', '' ); define( 'WPLANG', '' ); define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', true ); /* Cron tries to make an HTTP request to the blog, which always fails, because tests are run in CLI mode only */ define( 'DISABLE_WP_CRON', true ); $table_prefix = 'wp_'; Wednesday, 4 July 12