oauth2-client/phpunit.xml

22 lines
1.0 KiB
XML
Raw Normal View History

2013-02-26 16:02:34 +04:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="tests/Bootstrap.php">
<testsuites>
<testsuite name="OAuth Client">
2014-04-24 10:13:25 +04:00
<directory>tests</directory>
2013-02-26 16:02:34 +04:00
</testsuite>
</testsuites>
<filter>
<blacklist>
2014-04-24 10:13:25 +04:00
<directory suffix=".php">vendor</directory>
2013-02-26 16:02:34 +04:00
<directory suffix=".php">tests</directory>
2014-04-24 10:13:25 +04:00
<directory suffix=".php">build</directory>
2013-02-26 16:02:34 +04:00
</blacklist>
</filter>
<logging>
2014-04-24 10:13:25 +04:00
<log type="coverage-html" target="build/log/coverage" title="lncd/OAuth-client" charset="UTF-8" yui="true" highlight="true" lowUpperBound="50" highLowerBound="90"/>
2013-02-26 16:02:34 +04:00
<log type="coverage-text" target="php://stdout" title="lncd/OAuth-client" charset="UTF-8" yui="true" highlight="true" lowUpperBound="50" highLowerBound="90"/>
2014-04-24 10:13:25 +04:00
<log type="coverage-clover" target="build/log/clover.xml"/>
<log type="junit" target="build/log/junit.xml" logIncompleteSkipped="false"/>
2013-02-26 16:02:34 +04:00
</logging>
2013-11-18 06:45:28 +04:00
</phpunit>