aboutsummaryrefslogtreecommitdiff
path: root/phpunit.xml.dist
blob: 1d99d683ec53a669fa9f59535a7c3ca6465a2c0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
    colors="true">
    <testsuites>
        <testsuite name="Twig SortByFieldExtension Test Suite">
            <directory>test</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>src</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
    </logging>
</phpunit>