12345678910111213141516171819202122232425262728 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- colors="false"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- forceCoversAnnotation="true"
- executionOrder="depends,random">
- <testsuites>
- <testsuite name="Integration">
- <directory suffix="Test.php">./tests/integration</directory>
- </testsuite>
- <testsuite name="Unit">
- <directory suffix="Test.php">./tests/unit</directory>
- </testsuite>
- </testsuites>
- <logging>
- <log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="true"/>
- </logging>
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="false">
- <directory suffix=".php">./src</directory>
- </whitelist>
- </filter>
- </phpunit>
|