jhernandes/ipag-sdk-php

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false">
    <testsuites>
        <testsuite name="Application Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./src/Ipag</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-html" target="./report" charset="UTF-8"
            yui="true" highlight="true" lowUpperBound="50" highLowerBound="80"
        />
    </logging>
    <php>
        <env name="APPROVED" value="5" />
        <env name="APPROVED_CAPTURED" value="8" />
        <env name="CANCELED" value="3" />
        <env name="ID_IPAG" value="ipag@test.com" />
        <env name="API_KEY" value="6B27-B9818402-84D71CEA-57C5CC67-EB56" />
        <env name="CALLBACK_URL" value="https://minhaloja.com.br/retorno" />
    </php>
</phpunit>