Changeset 40065 for trunk/tests/phpunit/includes/bootstrap.php
- Timestamp:
- 02/16/2017 11:29:16 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/bootstrap.php
r39086 r40065 19 19 global $wpdb, $current_site, $current_blog, $wp_rewrite, $shortcode_tags, $wp, $phpmailer, $wp_theme_directories; 20 20 21 if ( !is_readable( $config_file_path ) ) { 22 die( "ERROR: wp-tests-config.php is missing! Please use wp-tests-config-sample.php to create a config file.\n" ); 21 if ( ! is_readable( $config_file_path ) ) { 22 echo "ERROR: wp-tests-config.php is missing! Please use wp-tests-config-sample.php to create a config file.\n"; 23 exit( 1 ); 23 24 } 24 25 require_once $config_file_path;
Note: See TracChangeset
for help on using the changeset viewer.