summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticResultFormats/phpunit.xml.dist
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
committerYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
commitfc7369835258467bf97eb64f184b93691f9a9fd5 (patch)
treedaabd60089d2dd76d9f5fb416b005fbe159c799d /www/wiki/extensions/SemanticResultFormats/phpunit.xml.dist
first commit
Diffstat (limited to 'www/wiki/extensions/SemanticResultFormats/phpunit.xml.dist')
-rw-r--r--www/wiki/extensions/SemanticResultFormats/phpunit.xml.dist32
1 files changed, 32 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticResultFormats/phpunit.xml.dist b/www/wiki/extensions/SemanticResultFormats/phpunit.xml.dist
new file mode 100644
index 00000000..103a0c6e
--- /dev/null
+++ b/www/wiki/extensions/SemanticResultFormats/phpunit.xml.dist
@@ -0,0 +1,32 @@
+<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"
+ verbose="true">
+ <testsuites>
+ <testsuite name="semantic-result-formats-unit">
+ <directory>tests/phpunit/Unit</directory>
+ </testsuite>
+ <testsuite name="semantic-result-formats-integration">
+ <directory>tests/phpunit/Integration</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist addUncoveredFilesFromWhitelist="true">
+ <directory suffix=".php">formats</directory>
+ <directory suffix=".php">src</directory>
+ <file>SemanticResultFormats.hooks.php</file>
+ <file>SemanticResultFormats.parser.php</file>
+ <file>SemanticResultFormats.php</file>
+ <file>SemanticResultFormats.utils.php</file>
+ </whitelist>
+ </filter>
+</phpunit>