added phpunit

This commit is contained in:
smiley
2016-02-08 13:38:00 +01:00
parent f506bf573d
commit 3b36574219
3 changed files with 82 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="php-qrcode test suite">
<file>tests/BitBufferTest.php</file>
</testsuite>
</testsuites>
</phpunit>