diff --git a/tools/phpunit/phpunit.xml b/tools/phpunit/phpunit.xml new file mode 100644 index 0000000000000000000000000000000000000000..60ffc28f672f08fe9657d10c38199249be0c632d --- /dev/null +++ b/tools/phpunit/phpunit.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<phpunit backupGlobals="false" + backupStaticAttributes="false" + colors="true" + convertErrorsToExceptions="true" + convertNoticesToExceptions="true" + convertWarningsToExceptions="true" + processIsolation="false" + stopOnFailure="false" + syntaxCheck="false" + bootstrap="./../../vendor/autoload.php"> + <testsuites> + <testsuite name="Test Suite"> + <directory>./../../tests</directory> + </testsuite> + </testsuites> +</phpunit>