diff --git a/Doxyfile b/Doxyfile index 179d3a85..8c9dc3bc 100644 --- a/Doxyfile +++ b/Doxyfile @@ -90,7 +90,8 @@ EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = */tests/* \ */benchmarks/* \ */docs/phpdoc/* \ - */docs/doxygen/* + */docs/doxygen/* \ + */test-settings.php EXAMPLE_PATH = EXAMPLE_PATTERNS = * EXAMPLE_RECURSIVE = NO diff --git a/tests/index.php b/tests/index.php index 22192cdc..560ba90b 100644 --- a/tests/index.php +++ b/tests/index.php @@ -9,7 +9,7 @@ error_reporting(E_ALL); $GLOBALS['HTMLPurifierTest']['PEAR'] = false; // do PEAR tests $simpletest_location = 'simpletest/'; -if (file_exists('../config.php')) include_once '../config.php'; +if (file_exists('../test-settings.php')) include_once '../test-settings.php'; require_once $simpletest_location . 'unit_tester.php'; require_once $simpletest_location . 'reporter.php'; require_once $simpletest_location . 'mock_objects.php';