oauth2-server/phpunit.xml

18 lines
875 B
XML
Raw Normal View History

2013-03-06 22:34:49 +05:30
<?xml version="1.0" encoding="UTF-8"?>
2013-11-26 05:22:45 +05:30
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="tests/Bootstrap.php">
2013-03-06 22:34:49 +05:30
<testsuites>
2014-01-16 22:21:06 +05:30
<testsuite name="Tests">
<directory>./tests/</directory>
</testsuite>
2013-03-06 22:34:49 +05:30
</testsuites>
<filter>
2014-01-16 22:21:06 +05:30
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
2013-03-06 22:34:49 +05:30
</filter>
<logging>
2014-01-16 22:21:06 +05:30
<log type="coverage-text" target="php://stdout" title="lncd/OAuth" charset="UTF-8" yui="true" highlight="true" lowUpperBound="60" highLowerBound="90"/>
<log type="coverage-html" target="tests/coverage" title="lncd/OAuth" charset="UTF-8" yui="true" highlight="true" lowUpperBound="60" highLowerBound="90"/>
2013-03-06 22:34:49 +05:30
</logging>
</phpunit>