diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-27 15:13:02 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-27 15:13:02 -0800 |
commit | 981631752a7571b22d9d8b3a8d7a6632f0a562a3 (patch) | |
tree | 51fb3f6d3a46926e1ea7778d17004f10a288dce7 /tests/phpunit.xml.dist | |
parent | 4471f580d7a50126d42690f05e81a75f7bbf8084 (diff) | |
parent | f3c0e212bf824df4f6b69abf079b5b138565f59c (diff) | |
download | volse-hubzilla-981631752a7571b22d9d8b3a8d7a6632f0a562a3.tar.gz volse-hubzilla-981631752a7571b22d9d8b3a8d7a6632f0a562a3.tar.bz2 volse-hubzilla-981631752a7571b22d9d8b3a8d7a6632f0a562a3.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'tests/phpunit.xml.dist')
-rw-r--r-- | tests/phpunit.xml.dist | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/phpunit.xml.dist b/tests/phpunit.xml.dist new file mode 100644 index 000000000..a22317b08 --- /dev/null +++ b/tests/phpunit.xml.dist @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.0/phpunit.xsd" + bootstrap="../boot.php" + forceCoversAnnotation="false" + beStrictAboutCoversAnnotation="true" + beStrictAboutOutputDuringTests="true" + beStrictAboutTodoAnnotatedTests="true" + verbose="true"> + <testsuite name="Hubzilla default Test Suite"> + <directory suffix="Test.php">./unit/</directory> + </testsuite> + <testsuite name="API Test Suite"> + <directory suffix="Test.php" prefix="API">./unit/</directory> + </testsuite> + <testsuite name="Ex-/Import Test Suite"> + <!--<directory suffix="Test.php">./unit/eximport/</directory>--> + </testsuite> + <groups> + <exclude> + <group>postgresql</group> + </exclude> + </groups> + <!--cover reporting--> + <filter> + <whitelist processUncoveredFilesFromWhitelist="true"> + <directory suffix=".php">../Zotlabs/</directory> + <directory suffix=".php">../include/</directory> + </whitelist> + </filter> + <logging> + <log type="junit" target="./results/junit.xml" logIncompleteSkipped="false"/> + <log type="coverage-clover" target="./results/coverage-clover.xml"/> + <log type="coverage-html" target="./results/coverage-report/" lowUpperBound="35" + highLowerBound="70"/> + <log type="testdox-text" target="./results/testdox.txt"/> + </logging> +</phpunit> |