Add phpunit.xml config file.

This commit is contained in:
Gary Jones 2012-11-18 12:28:10 +00:00
parent 68dcff84a4
commit e8cd1bdc22
1 changed files with 18 additions and 0 deletions

18
phpunit.xml Normal file
View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="OAuth Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>