aboutsummaryrefslogtreecommitdiffhomepage
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-19 11:59:22 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-19 11:59:22 +0100
commitf3052b454277b2d54669943f7c0ca5d4b4af50ab (patch)
treef20ced7dd07544a765de352b38e9b80def9eacaf /phpunit.xml.dist
parente342acf7baf72e3be0fdcd8aac04eebb5c0a16a8 (diff)
downloadwallabag-f3052b454277b2d54669943f7c0ca5d4b4af50ab.tar.gz
wallabag-f3052b454277b2d54669943f7c0ca5d4b4af50ab.tar.zst
wallabag-f3052b454277b2d54669943f7c0ca5d4b4af50ab.zip
foo test
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist27
1 files changed, 27 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 00000000..cede1cea
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,27 @@
1<?xml version="1.0" encoding="UTF-8"?>
2
3 <phpunit backupGlobals="false"
4 backupStaticAttributes="false"
5 colors="true"
6 convertErrorsToExceptions="true"
7 convertNoticesToExceptions="true"
8 convertWarningsToExceptions="true"
9 processIsolation="false"
10 stopOnFailure="false"
11 syntaxCheck="false"
12 bootstrap="vendor/autoload.php"
13 >
14
15 <testsuites>
16 <testsuite name="wallabag Test Suite">
17 <directory>tests</directory>
18 </testsuite>
19 </testsuites>
20
21 <filter>
22 <whitelist>
23 <directory>inc</directory>
24 </whitelist>
25 </filter>
26
27</phpunit>