summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Bootstrap/phpunit.xml.dist
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Bootstrap/phpunit.xml.dist')
-rw-r--r--www/wiki/extensions/Bootstrap/phpunit.xml.dist26
1 files changed, 26 insertions, 0 deletions
diff --git a/www/wiki/extensions/Bootstrap/phpunit.xml.dist b/www/wiki/extensions/Bootstrap/phpunit.xml.dist
new file mode 100644
index 00000000..930e8a62
--- /dev/null
+++ b/www/wiki/extensions/Bootstrap/phpunit.xml.dist
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit backupGlobals="false"
+ backupStaticAttributes="false"
+ bootstrap="tests/bootstrap.php"
+ cacheTokens="false"
+ colors="true"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ stopOnError="false"
+ stopOnFailure="false"
+ stopOnIncomplete="false"
+ stopOnSkipped="false"
+ strict="true"
+ verbose="true">
+ <testsuites>
+ <testsuite name="extension-bootstrap">
+ <directory>tests/phpunit</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist addUncoveredFilesFromWhitelist="true">
+ <directory suffix=".php">src</directory>
+ </whitelist>
+ </filter>
+</phpunit>