]> git.mxchange.org Git - core.git/blobdiff - tests/bootstrap.php
Continued with unit tests:
[core.git] / tests / bootstrap.php
index 3d2f1aeeaa92db8df9b1f9cfb24fc48774ef7125..de3ab8eeba73c84fa931fe443b9f9dfdb051ace6 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 
+// Import needed stuff
+use CoreFramework\Configuration\FrameworkConfiguration;
+
 /*
  * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
  *
@@ -40,3 +43,6 @@ if (extension_loaded('xdebug')) {
 
 // Autoload more stuff
 require dirname(__DIR__) . '/vendor/autoload.php';
+
+// Quiet DNS resolver as this is not wanted here
+FrameworkConfiguration::getSelfInstance()->setConfigEntry('quiet_dns_resolver', TRUE);