diff options
author | Anant Narayanan <anant@kix.in> | 2013-08-30 13:26:50 -0700 |
---|---|---|
committer | Anant Narayanan <anant@kix.in> | 2013-08-30 13:26:50 -0700 |
commit | b8acf5a5deab7b929a383c76470469baf68830ab (patch) | |
tree | 11727e2965a06973d2e152b456167ead69c2a717 /phpunit.xml.dist | |
parent | c794eeba527537f9690c1157b9f7f71999ded4ce (diff) | |
parent | 66c3957571107fb35a0d441a9e109512cdc46f97 (diff) | |
download | php-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.dist | 19 |
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> |