summaryrefslogtreecommitdiff
path: root/phpunit.xml.dist
blob: 8dff2227fbc51d5a4479df9ff4bcbb9ce61f7829 (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
    <testsuites>
        <testsuite name="PHPUnit">
          <directory>test/HTML5/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <blacklist>
            <file>src/HTML5/Parser/InputStream.php</file>
            <file>src/HTML5/Serializer/RulesInterface.php</file>
            <file>src/HTML5/Entities.php</file>
            <file>src/HTML5/Serializer/HTML5Entities.php</file> 
        </blacklist>
    </filter>
    <logging>
        <log
            type="coverage-html"
            target="build/coverage"
            charset="UTF-8"
            yui="true"
            highlight="true"
            lowUpperBound="35"
            highLowerBound="70"
            showUncoveredFiles="true"
            />
          <log type="coverage-clover" target="build/logs/clover.xml"/>
    </logging>
</phpunit>