doc
1 year ago
lib
1 year ago
tests
1 year ago
.coveralls.yml
1 year ago
.git
1 year ago
.gitignore
1 year ago
.travis.yml
1 year ago
LICENSE.txt
1 year ago
README.md
1 year ago
build.php
1 year ago
composer.json
1 year ago
init.php
1 year ago
overview.md
1 year ago
phpunit.no_autoload.xml
1 year ago
phpunit.xml
1 year ago
release.php
1 year ago
test
1 year ago
phpunit.xml
17 lines
| 1 | <phpunit bootstrap="tests/bootstrap.php" colors="true"> |
| 2 | <testsuites> |
| 3 | <testsuite name="WonderPush PHP Test Suite"> |
| 4 | <directory suffix="Test.php">tests</directory> |
| 5 | </testsuite> |
| 6 | </testsuites> |
| 7 | <filter> |
| 8 | <whitelist> |
| 9 | <directory>lib</directory> |
| 10 | </whitelist> |
| 11 | </filter> |
| 12 | <logging> |
| 13 | <log type="coverage-clover" target="clover.xml"/> |
| 14 | <log type="coverage-html" target="./coverage/"/> |
| 15 | </logging> |
| 16 | </phpunit> |
| 17 |