]> git.mxchange.org Git - core.git/blobdiff - tests/bootstrap.php
Continued:
[core.git] / tests / bootstrap.php
index 3d2f1aeeaa92db8df9b1f9cfb24fc48774ef7125..9e12404c9e6d614a00f90eb289df6fb9e5a42e77 100644 (file)
@@ -1,7 +1,9 @@
 <?php
+// Import needed stuff
+use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
 
 /*
- * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
+ * Copyright (C) 2017 - 2022 Core Developer Team
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -36,7 +38,10 @@ unset($_SERVER['argv'][1]);
 if (extension_loaded('xdebug')) {
        // Quiet it a bit as this interfers with the nice testing output
        ini_set('xdebug.show_exception_trace', FALSE);
-} // END - if
+}
 
 // Autoload more stuff
 require dirname(__DIR__) . '/vendor/autoload.php';
+
+// Quiet DNS resolver as this is not wanted here
+FrameworkBootstrap::getConfigurationInstance()->setConfigEntry('quiet_dns_resolver', TRUE);