diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-15 16:09:08 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-15 16:09:08 -0700 |
commit | c95e9b9ba52b8376eea079850caf178e223a1a6d (patch) | |
tree | d9f60eec35a69652311d46a7dbf3d1bb44871442 /tests/phpunit-mysql.xml | |
parent | e1fe637dcd05f587a5974f5062fd4b2c31e109bb (diff) | |
parent | 472a824a1eaef00759ebbdc506384e8d521e408e (diff) | |
download | volse-hubzilla-c95e9b9ba52b8376eea079850caf178e223a1a6d.tar.gz volse-hubzilla-c95e9b9ba52b8376eea079850caf178e223a1a6d.tar.bz2 volse-hubzilla-c95e9b9ba52b8376eea079850caf178e223a1a6d.zip |
could not fix the merge conflicts in composer.lock so it will need to be regenerated in the red tree.
also the autoload_classmap is a disgrace. We provide autoload functions so that we can dynamically
change the file tree without needing to regenerate a bunch of runtime stuff every time we add a file.
Merge branch 'dev' into red
Diffstat (limited to 'tests/phpunit-mysql.xml')
-rw-r--r-- | tests/phpunit-mysql.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/phpunit-mysql.xml b/tests/phpunit-mysql.xml new file mode 100644 index 000000000..171211094 --- /dev/null +++ b/tests/phpunit-mysql.xml @@ -0,0 +1,37 @@ +<?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"/> + </logging> +</phpunit> |