summaryrefslogtreecommitdiff
path: root/http/codebird-php/phpunit.xml
diff options
context:
space:
mode:
Diffstat (limited to 'http/codebird-php/phpunit.xml')
-rw-r--r--http/codebird-php/phpunit.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/http/codebird-php/phpunit.xml b/http/codebird-php/phpunit.xml
new file mode 100644
index 0000000..cd28e1c
--- /dev/null
+++ b/http/codebird-php/phpunit.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit backupGlobals="true"
+ backupStaticAttributes="false"
+ colors="true"
+ verbose="true">
+
+ <testsuites>
+ <testsuite name="Environment">
+ <file>test/environment_test.php</file>
+ </testsuite>
+ <testsuite name="Unit">
+ <directory suffix="_tests.php">test</directory>
+ </testsuite>
+ </testsuites>
+
+ <logging>
+ <log type="coverage-clover" target="build/logs/clover.xml"/>
+ <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
+ </logging>
+
+ <filter>
+ <whitelist addUncoveredFilesFromWhitelist="true">
+ <directory suffix=".php">src</directory>
+ </whitelist>
+ </filter>
+</phpunit>