summaryrefslogtreecommitdiffstats
path: root/tests/phpunit-autotest.xml
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-05 20:20:55 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-05 20:20:55 +0100
commitc0263173d2d7ae0281476ba5f3b1f62b4764af58 (patch)
tree94da2a79a5c569efc8e55bb3dc2f25898bfc96b7 /tests/phpunit-autotest.xml
parent10ea45c916aceac368c8e6d4c6c7d7f4000c182f (diff)
downloadnextcloud-server-c0263173d2d7ae0281476ba5f3b1f62b4764af58.tar.gz
nextcloud-server-c0263173d2d7ae0281476ba5f3b1f62b4764af58.zip
add phpunit configuration for autotest withou the json listener because this pollutes the console
Diffstat (limited to 'tests/phpunit-autotest.xml')
-rw-r--r--tests/phpunit-autotest.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml
new file mode 100644
index 00000000000..23cd123edc6
--- /dev/null
+++ b/tests/phpunit-autotest.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<phpunit bootstrap="bootstrap.php">
+ <testsuite name='ownCloud'>
+ <directory suffix='.php'>lib/</directory>
+ <file>apps.php</file>
+ </testsuite>
+ <!-- filters for code coverage -->
+ <whitelist processUncoveredFilesFromWhitelist="true">
+ <directory suffix=".php">..</directory>
+ <exclude>
+ <directory suffix=".php">../3rdparty</directory>
+ </exclude>
+ </whitelist>
+</phpunit>