12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- bootstrap="tests/bootstrap.php"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- testSuiteLoaderFile="phpunit/src/Runner/StandardTestSuiteLoader.php">
- <testsuites>
- <testsuite name="All">
- <directory>tests</directory>
- </testsuite>
- <testsuite name="Test4HighVersion">
- <directory>./tests/HigherthanorEqualtoVersion7_2</directory>
- </testsuite>
- <testsuite name="Test4LowVersion">
- <directory>./tests/LowerthanVersion7_2</directory>
- </testsuite>
- <testsuite name="Unit4HighVersion">
- <directory suffix="Test.php">./tests/HigherthanorEqualtoVersion7_2/Unit</directory>
- </testsuite>
- <testsuite name="Feature4HighVersion">
- <directory suffix="Test.php">./tests/HigherthanorEqualtoVersion7_2/Feature</directory>
- </testsuite>
- <testsuite name="Unit4LowVersion">
- <directory suffix="Test.php">./tests/LowerthanVersion7_2/Unit</directory>
- </testsuite>
- <testsuite name="Feature4LowVersion">
- <directory suffix="Test.php">./tests/LowerthanVersion7_2/Feature</directory>
- </testsuite>
- </testsuites>
- <groups>
- <exclude>
- <group>integration</group>
- </exclude>
- </groups>
- <logging>
- <log type="coverage-html" target="cache/coverage" lowUpperBound="35" highLowerBound="70"/>
- <log type="coverage-clover" target="cache/coverage.clover"/>
- </logging>
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="true">
- <directory suffix=".php">./src</directory>
- <exclude>
- <file>./src/Profile/DefaultProfile.php</file>
- <file>./src/DefaultAcsClient.php</file>
- <file>./src/Release.php</file>
- <file>./src/SDK.php</file>
- <file>./src/Functions.php</file>
- <file>./src/Constants/Business.php</file>
- <file>./src/Constants/ErrorCode.php</file>
- <file>./src/Signature/Signature.php</file>
- <file>./src/Credentials/CredentialsInterface.php</file>
- </exclude>
- </whitelist>
- </filter>
- </phpunit>
|