mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
29 lines
888 B
XML
29 lines
888 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
colors="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false">
|
|
<testsuites>
|
|
<testsuite name="Test Suite">
|
|
<directory suffix="test.php">../tests/authentication</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filters>
|
|
<blacklist>
|
|
<directory suffix=".php">PEAR_INSTALL_DIR</directory>
|
|
<directory suffix=".php">PHP_LIBDIR</directory>
|
|
</blacklist>
|
|
</filters>
|
|
<logging>
|
|
<log type="coverage-html" target="coverage" title="lncd/OAuth"
|
|
charset="UTF-8" yui="true" highlight="true"
|
|
lowUpperBound="35" highLowerBound="70"/>
|
|
<log type="coverage-clover" target="${basedir}/build/logs/clover.xml"/>
|
|
<log type="junit" target="${basedir}/build/logs/junit.xml"
|
|
logIncompleteSkipped="false"/>
|
|
</logging>
|
|
</phpunit> |