summaryrefslogtreecommitdiffstats
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorDavey Shafik <me@daveyshafik.com>2015-12-04 01:00:27 -0500
committerDavey Shafik <me@daveyshafik.com>2015-12-04 13:13:01 -0500
commitf8a7029e0de2240328b956340d07df417ab0232d (patch)
tree8d74b874d121774aa94b2c20474c880d45d129a5 /phpunit.xml.dist
downloadphp7-mysql-shim-f8a7029e0de2240328b956340d07df417ab0232d.zip
php7-mysql-shim-f8a7029e0de2240328b956340d07df417ab0232d.tar.gz
php7-mysql-shim-f8a7029e0de2240328b956340d07df417ab0232d.tar.bz2
Initial commit of ext/mysql shim for PHP 7
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist20
1 files changed, 20 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 0000000..d4470de
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,20 @@
+<phpunit colors="true" verbose="true" bootstrap="tests/bootstrap.php">
+ <php>
+ <ini name="display_errors" value="on"/>
+ </php>
+ <logging>
+ <log type="coverage-html" target="build/coverage/report"/>
+ <log type="coverage-xml" target="build/coverage/xml"/>
+ <log type="coverage-clover" target="build/coverage/coverage.clover"/>
+ </logging>
+ <testsuites>
+ <testsuite name="Unit Test">
+ <directory>./tests</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist processUncoveredFilesFromWhitelist="true">
+ <directory suffix=".php">./lib</directory>
+ </whitelist>
+ </filter>
+</phpunit>