Browse code

Initial commit

Benjamin Roth authored on25/11/2018 15:53:19
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,26 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+
3
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+         xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.0/phpunit.xsd"
5
+         backupGlobals="false"
6
+         colors="true"
7
+>
8
+    <php>
9
+        <ini name="error_reporting" value="-1" />
10
+    </php>
11
+
12
+    <testsuites>
13
+        <testsuite name="Linzertorten.com Bundle">
14
+            <directory>./tests</directory>
15
+        </testsuite>
16
+    </testsuites>
17
+
18
+    <filter>
19
+        <whitelist>
20
+            <directory>./src</directory>
21
+            <exclude>
22
+                <directory>./src/Resources</directory>
23
+            </exclude>
24
+        </whitelist>
25
+    </filter>
26
+</phpunit>