.github
1 year ago
.phan
1 year ago
src
1 year ago
tests
1 year ago
LICENSE
1 year ago
README.md
1 year ago
composer.json
1 year ago
composer.lock
1 year ago
phpcs-ruleset.xml
1 year ago
phpunit.xml
1 year ago
phpunit.xml
28 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | backupGlobals="false" |
| 4 | backupStaticAttributes="false" |
| 5 | bootstrap="tests/bootstrap.php" |
| 6 | colors="true" |
| 7 | convertDeprecationsToExceptions="true" |
| 8 | convertErrorsToExceptions="true" |
| 9 | convertNoticesToExceptions="true" |
| 10 | convertWarningsToExceptions="true" |
| 11 | processIsolation="false" |
| 12 | stopOnError="false" |
| 13 | stopOnFailure="false" |
| 14 | verbose="true" |
| 15 | xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
| 16 | > |
| 17 | <testsuites> |
| 18 | <testsuite name="SDK Test Suite"> |
| 19 | <directory suffix="Test.php">./tests</directory> |
| 20 | </testsuite> |
| 21 | </testsuites> |
| 22 | <coverage includeUncoveredFiles="true"> |
| 23 | <include> |
| 24 | <directory suffix=".php">src</directory> |
| 25 | </include> |
| 26 | </coverage> |
| 27 | </phpunit> |
| 28 |