diff options
author | nashe <thomas@chauchefoin.fr> | 2017-05-28 13:23:40 +0200 |
---|---|---|
committer | nashe <thomas@chauchefoin.fr> | 2017-05-28 13:23:40 +0200 |
commit | b3274cae04bc319c71d9d2037384480e8f8dc43c (patch) | |
tree | 8d8002249e32b0b4e45a2cc16ad7640011ef51e7 /phpunit.xml | |
parent | 2a60d81683447855dff4b73171182dfec05ad6a6 (diff) | |
download | planet-b3274cae04bc319c71d9d2037384480e8f8dc43c.tar planet-b3274cae04bc319c71d9d2037384480e8f8dc43c.tar.gz planet-b3274cae04bc319c71d9d2037384480e8f8dc43c.tar.bz2 planet-b3274cae04bc319c71d9d2037384480e8f8dc43c.tar.xz planet-b3274cae04bc319c71d9d2037384480e8f8dc43c.zip |
Codeception was slightly overkill, get back to PHPUnit
Diffstat (limited to 'phpunit.xml')
-rw-r--r-- | phpunit.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..835272f --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd" + bootstrap="vendor/autoload.php" + backupGlobals="false" + beStrictAboutCoversAnnotation="true" + beStrictAboutOutputDuringTests="true" + beStrictAboutTestsThatDoNotTestAnything="true" + beStrictAboutTodoAnnotatedTests="true" + verbose="true"> + <testsuite> + <directory suffix="Test.php">tests</directory> + </testsuite> + + <filter> + <whitelist processUncoveredFilesFromWhitelist="true"> + <directory suffix=".php">.</directory> + </whitelist> + </filter> +</phpunit> |