123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- beStrictAboutTestsThatDoNotTestAnything="false"
- bootstrap="tests/bootstrap.php"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnError="false"
- stopOnFailure="false"
- verbose="true"
- >
- <testsuites>
- <testsuite name="Think Queue Test Suite">
- <directory suffix="Test.php">./tests</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="true">
- <directory suffix=".php">./src</directory>
- <exclude>
- <file>./src/queue/Service.php</file>
- <file>./src/common.php</file>
- <file>./src/config.php</file>
- </exclude>
- </whitelist>
- </filter>
- </phpunit>
|