.git
5 years ago
bin
5 years ago
doc
5 years ago
src
5 years ago
tests
5 years ago
.gitattributes
5 years ago
.gitignore
5 years ago
.travis.yml
5 years ago
FUNDING.yml
5 years ago
LICENSE
5 years ago
README.md
5 years ago
composer.json
5 years ago
phpunit.xml.dist
5 years ago
phpunit.xml.dist
19 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit bootstrap="tests/bootstrap.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="false"> |
| 3 | <testsuites> |
| 4 | <testsuite name="Embera Test Suite"> |
| 5 | <directory>tests/Embera/</directory> |
| 6 | </testsuite> |
| 7 | </testsuites> |
| 8 | |
| 9 | <filter> |
| 10 | <whitelist> |
| 11 | <directory suffix=".php">src/Embera/</directory> |
| 12 | </whitelist> |
| 13 | </filter> |
| 14 | |
| 15 | <php> |
| 16 | <ini name="date.timezone" value="UTC"/> |
| 17 | </php> |
| 18 | </phpunit> |
| 19 |