aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit-mysql.xml
blob: b421d7a7b2ebc12a2d10c3b975279ec655dc32b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
         backupGlobals="false"
         beStrictAboutCoversAnnotation="true"
         beStrictAboutOutputDuringTests="true"
         beStrictAboutTestsThatDoNotTestAnything="true"
         beStrictAboutTodoAnnotatedTests="true"
         processIsolation="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-html" target="./results/report/" lowUpperBound="35"
       highLowerBound="70"/>
    </logging>
</phpunit>