From 2d2a090d7fdc026757b5f0541040dac44c16b42d Mon Sep 17 00:00:00 2001
From: Jaime Perez <jaime.perez@uninett.no>
Date: Wed, 1 Oct 2014 17:04:10 +0200
Subject: [PATCH] Adding an XML configuration for phpunit.

---
 tools/phpunit/phpunit.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 tools/phpunit/phpunit.xml

diff --git a/tools/phpunit/phpunit.xml b/tools/phpunit/phpunit.xml
new file mode 100644
index 000000000..60ffc28f6
--- /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>
-- 
GitLab