lib
5 years ago
CODE_OF_CONDUCT.md
5 years ago
CONTRIBUTING.md
10 years ago
LICENSE
10 years ago
README.md
5 years ago
apigen.neon
10 years ago
composer.json
5 years ago
phpunit.xml.dist
10 years ago
phpunit.xml.dist
34 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit colors="false" verbose="false" bootstrap="./tests/bootstrap.php"> |
| 3 | |
| 4 | <testsuites> |
| 5 | <testsuite name="OpenCloud"> |
| 6 | <directory>./tests/OpenCloud/Tests</directory> |
| 7 | </testsuite> |
| 8 | </testsuites> |
| 9 | |
| 10 | <filter> |
| 11 | <whitelist processUncoveredFilesFromWhitelist="true"> |
| 12 | <directory suffix=".php">./lib/OpenCloud</directory> |
| 13 | <exclude> |
| 14 | <directory suffix="Exception.php">./lib/OpenCloud/CloudMonitoring/Exception</directory> |
| 15 | <directory suffix="Error.php">./lib/OpenCloud/Common/Exceptions</directory> |
| 16 | <directory suffix="Exception.php">./lib/OpenCloud/Common/Exceptions</directory> |
| 17 | <directory suffix="Exception.php">./lib/OpenCloud/Compute/Exception</directory> |
| 18 | <directory suffix="Exception.php">./lib/OpenCloud/ObjectStore/Exception</directory> |
| 19 | <directory suffix="Exception.php">./lib/OpenCloud/Queues/Exception</directory> |
| 20 | </exclude> |
| 21 | </whitelist> |
| 22 | </filter> |
| 23 | |
| 24 | <logging> |
| 25 | <log type="coverage-clover" target="./build/logs/clover.xml" /> |
| 26 | </logging> |
| 27 | |
| 28 | <php> |
| 29 | <ini name="memory_limit" value="512M" /> |
| 30 | <ini name="zend.enable_gc" value="0" /> |
| 31 | </php> |
| 32 | |
| 33 | </phpunit> |
| 34 |