example
4 years ago
src
1 month ago
CONTRIBUTING.md
1 month ago
ChangeLog
4 years ago
LICENSE
1 month ago
README.rst
1 month ago
composer.json
1 month ago
package.xml
4 years ago
phpunit.xml
1 month ago
sonar-project.properties
1 month ago
phpunit.xml
26 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit backupGlobals="false" |
| 3 | bootstrap="tests/bootstrap.php" |
| 4 | colors="true" |
| 5 | beStrictAboutChangesToGlobalState="true" |
| 6 | beStrictAboutOutputDuringTests="true" |
| 7 | beStrictAboutTestsThatDoNotTestAnything="true" |
| 8 | beStrictAboutCoversAnnotation="true" |
| 9 | > |
| 10 | <testsuites> |
| 11 | <testsuite name="JsonMapper Test Suite"> |
| 12 | <directory>./tests</directory> |
| 13 | </testsuite> |
| 14 | </testsuites> |
| 15 | |
| 16 | <filter> |
| 17 | <whitelist> |
| 18 | <directory suffix=".php">src</directory> |
| 19 | </whitelist> |
| 20 | </filter> |
| 21 | |
| 22 | <php> |
| 23 | <ini name="date.timezone" value="UTC"/> |
| 24 | </php> |
| 25 | </phpunit> |
| 26 |