summaryrefslogtreecommitdiff
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist29
1 files changed, 29 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 0000000..c145f8b
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit colors="true">
+ <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>