IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
12 | 12 | } |
13 | 13 | $config_file_path .= '/wp-tests-config.php'; |
14 | 14 | |
| 15 | /* Check for externally-defined config file path constant instead */ |
| 16 | if ( !is_readable( $config_file_path ) && defined( 'WP_CONFIG_FILE_PATH' ) ) { |
| 17 | $config_file_path = WP_CONFIG_FILE_PATH; |
| 18 | } |
| 19 | |
15 | 20 | /* |
16 | 21 | * Globalize some WordPress variables, because PHPUnit loads this file inside a function |
17 | 22 | * See: https://github.com/sebastianbergmann/phpunit/issues/325 |