summaryrefslogtreecommitdiffstats
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorAnant Narayanan <anant@kix.in>2013-08-30 13:26:50 -0700
committerAnant Narayanan <anant@kix.in>2013-08-30 13:26:50 -0700
commitb8acf5a5deab7b929a383c76470469baf68830ab (patch)
tree11727e2965a06973d2e152b456167ead69c2a717 /phpunit.xml.dist
parentc794eeba527537f9690c1157b9f7f71999ded4ce (diff)
parent66c3957571107fb35a0d441a9e109512cdc46f97 (diff)
downloadphp-jwt-b8acf5a5deab7b929a383c76470469baf68830ab.zip
php-jwt-b8acf5a5deab7b929a383c76470469baf68830ab.tar.gz
php-jwt-b8acf5a5deab7b929a383c76470469baf68830ab.tar.bz2
Merge pull request #3 from phansys/master
Improved test suite
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist19
1 files changed, 19 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 0000000..9f85f5b
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<phpunit backupGlobals="false"
+ backupStaticAttributes="false"
+ colors="true"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ processIsolation="false"
+ stopOnFailure="false"
+ syntaxCheck="false"
+ bootstrap="tests/bootstrap.php"
+>
+ <testsuites>
+ <testsuite name="PHP JSON Web Token Test Suite">
+ <directory>./tests</directory>
+ </testsuite>
+ </testsuites>
+</phpunit>