summaryrefslogtreecommitdiff
path: root/server/vendor/php-opencloud/common/phpunit.xml.dist
blob: cf698d5bb52b2ff44bfcd10ae50b8fcf41b87361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">

    <testsuites>
        <testsuite name="OpenStack">
            <directory>tests/unit</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist>
            <directory suffix=".php">./src</directory>
            <exclude>
                <directory suffix="Interface.php">./src</directory>
                <directory suffix="Api.php">./src</directory>
                <directory suffix="Params.php">./src</directory>
            </exclude>
        </whitelist>
    </filter>

</phpunit>