summaryrefslogtreecommitdiff
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorMatt Butcher <[email protected]>2014-02-11 09:56:01 -0700
committerMatt Butcher <[email protected]>2014-02-11 09:56:01 -0700
commit44e8e23626bf619844baf9983e931d2f58606377 (patch)
tree62625f63a954ab5a3f9bb4184039a68496e3896a /phpunit.xml.dist
parent77ad931cd824feb33eebae08cf3a5a47bce1e337 (diff)
parent3b691837c6d7a0969137048fbda274463d6b1d7c (diff)
Merge branch 'master' of github.com:Masterminds/html5-php
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>