library
2 years ago
.codecov.yml
4 years ago
CHANGELOG.md
2 years ago
LICENSE
4 years ago
README.md
2 years ago
composer.json
2 years ago
phpunit.xml.dist
4 years ago
phpunit.xml.dist
44 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd" |
| 5 | backupGlobals="true" |
| 6 | bootstrap="tests/bootstrap.php" |
| 7 | colors="true" |
| 8 | verbose="true" |
| 9 | > |
| 10 | <testsuites> |
| 11 | <testsuite name="Authentication"> |
| 12 | <directory suffix=".php">tests/Auth</directory> |
| 13 | </testsuite> |
| 14 | <testsuite name="Transports"> |
| 15 | <directory suffix=".php">tests/Transport</directory> |
| 16 | </testsuite> |
| 17 | <testsuite name="Proxies"> |
| 18 | <directory suffix=".php">tests/Proxy</directory> |
| 19 | </testsuite> |
| 20 | <testsuite name="General"> |
| 21 | <file>tests/ChunkedEncoding.php</file> |
| 22 | <file>tests/Cookies.php</file> |
| 23 | <file>tests/Encoding.php</file> |
| 24 | <file>tests/IDNAEncoder.php</file> |
| 25 | <file>tests/IRI.php</file> |
| 26 | <file>tests/Requests.php</file> |
| 27 | <file>tests/Response/Headers.php</file> |
| 28 | <file>tests/Session.php</file> |
| 29 | <file>tests/SSL.php</file> |
| 30 | <file>tests/Utility/FilteredIterator.php</file> |
| 31 | </testsuite> |
| 32 | </testsuites> |
| 33 | |
| 34 | <logging> |
| 35 | <log type="coverage-html" target="tests/coverage" lowUpperBound="35" highLowerBound="90"/> |
| 36 | </logging> |
| 37 | |
| 38 | <filter> |
| 39 | <whitelist addUncoveredFilesFromWhitelist="true"> |
| 40 | <directory suffix=".php">library</directory> |
| 41 | </whitelist> |
| 42 | </filter> |
| 43 | </phpunit> |
| 44 |