src
7 years ago
.hhconfig
7 years ago
.travis.yml
7 years ago
FastRoute.hhi
7 years ago
LICENSE
7 years ago
README.md
7 years ago
composer.json
7 years ago
phpunit.xml
7 years ago
psalm.xml
7 years ago
phpunit.xml
25 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | |
| 3 | <phpunit backupGlobals="false" |
| 4 | backupStaticAttributes="false" |
| 5 | colors="true" |
| 6 | convertErrorsToExceptions="true" |
| 7 | convertNoticesToExceptions="true" |
| 8 | convertWarningsToExceptions="true" |
| 9 | processIsolation="false" |
| 10 | syntaxCheck="false" |
| 11 | bootstrap="test/bootstrap.php" |
| 12 | > |
| 13 | <testsuites> |
| 14 | <testsuite name="FastRoute Tests"> |
| 15 | <directory>./test/</directory> |
| 16 | </testsuite> |
| 17 | </testsuites> |
| 18 | |
| 19 | <filter> |
| 20 | <whitelist> |
| 21 | <directory>./src/</directory> |
| 22 | </whitelist> |
| 23 | </filter> |
| 24 | </phpunit> |
| 25 |