aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/michelf/php-markdown/phpunit.xml.dist
blob: 8f2dab54db7e393e36fb68ad98117daec5fad35c (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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="./test/bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
>
    <testsuites>
        <testsuite name="php-markdown Unit Tests">
            <directory>./test/unit/</directory>
        </testsuite>
        <testsuite name="php-markdown Integration Tests">
            <directory>./test/integration/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">Michelf</directory>
        </whitelist>
    </filter>
</phpunit>