aboutsummaryrefslogtreecommitdiffhomepage
path: root/phpunit.xml
diff options
context:
space:
mode:
authornodiscc <nodiscc@gmail.com>2015-06-23 14:38:43 +0200
committernodiscc <nodiscc@gmail.com>2015-06-23 14:38:43 +0200
commit38a0c256d200df872990f6ed450aceaf215eeafd (patch)
treef6db984281ca44e6f9c763d78eb990b32be07b25 /phpunit.xml
parent0fe36414c86e8417974d847f8d6d28c90def9ccc (diff)
parentca74886f30da323f42aa4bd70461003f46ef299b (diff)
downloadShaarli-38a0c256d200df872990f6ed450aceaf215eeafd.tar.gz
Shaarli-38a0c256d200df872990f6ed450aceaf215eeafd.tar.zst
Shaarli-38a0c256d200df872990f6ed450aceaf215eeafd.zip
Merge remote-tracking branch 'virtualtam/test/link-db' into next
Conflicts: index.php
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 00000000..d6e01c35
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,15 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
5 colors="true">
6 <filter>
7 <whitelist addUncoveredFilesFromWhitelist="true">
8 <directory suffix=".php">application</directory>
9 </whitelist>
10 </filter>
11 <logging>
12 <log type="coverage-html" target="coverage" lowUpperBound="30" highLowerBound="80"/>
13 <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
14 </logging>
15</phpunit>