diff options
author | Jaime Perez <jaime.perez@uninett.no> | 2014-10-01 17:04:10 +0200 |
---|---|---|
committer | Jaime Perez <jaime.perez@uninett.no> | 2014-10-01 17:04:10 +0200 |
commit | 2d2a090d7fdc026757b5f0541040dac44c16b42d (patch) | |
tree | 2c9843e7216a2ba47930ab2846cdd00c5b398c73 /tools/phpunit | |
parent | 858893a5d057458bbe6e4d82adb6f8a51eba1a6c (diff) | |
download | simplesamlphp-2d2a090d7fdc026757b5f0541040dac44c16b42d.zip simplesamlphp-2d2a090d7fdc026757b5f0541040dac44c16b42d.tar.gz simplesamlphp-2d2a090d7fdc026757b5f0541040dac44c16b42d.tar.bz2 |
Adding an XML configuration for phpunit.
Diffstat (limited to 'tools/phpunit')
-rw-r--r-- | tools/phpunit/phpunit.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/phpunit/phpunit.xml b/tools/phpunit/phpunit.xml new file mode 100644 index 0000000..60ffc28 --- /dev/null +++ b/tools/phpunit/phpunit.xml @@ -0,0 +1,18 @@ +<?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="./../../vendor/autoload.php"> + <testsuites> + <testsuite name="Test Suite"> + <directory>./../../tests</directory> + </testsuite> + </testsuites> +</phpunit> |