Lib
8 years ago
Tests
8 years ago
.scrutinizer.yml
8 years ago
.travis.yml
8 years ago
LICENSE
8 years ago
PROVIDERS.md
8 years ago
README.md
8 years ago
composer.json
8 years ago
phpdoc.xml
8 years ago
phpunit.full-urls.xml
8 years ago
phpunit.xml
8 years ago
phpunit.xml
27 lines
| 1 | <phpunit strict="true" |
| 2 | backupGlobals="false" |
| 3 | backupStaticAttributes="false" |
| 4 | syntaxCheck="false" |
| 5 | timeoutForSmallTests="100" |
| 6 | timeoutForMediumTests="200" |
| 7 | timeoutForLargeTests="300" |
| 8 | bootstrap="Tests/Autoload.php"> |
| 9 | <testsuites> |
| 10 | <testsuite name="Library Check"> |
| 11 | <directory suffix=".php">Tests/</directory> |
| 12 | </testsuite> |
| 13 | </testsuites> |
| 14 | <filter> |
| 15 | <whitelist processUncoveredFilesFromWhitelist="true"> |
| 16 | <directory suffix=".php">Lib/</directory> |
| 17 | </whitelist> |
| 18 | <blacklist> |
| 19 | <directory suffix=".php">vendor/</directory> |
| 20 | <directory suffix=".php">Tests/</directory> |
| 21 | </blacklist> |
| 22 | </filter> |
| 23 | <logging> |
| 24 | <log type="coverage-html" target="Tests/Coverage" charset="UTF-8" yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/> |
| 25 | </logging> |
| 26 | </phpunit> |
| 27 |