oauth2-server/phpunit.xml

18 lines
875 B
XML
Raw Normal View History

2013-03-06 17:04:49 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2013-11-25 23:52:45 +00:00
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="tests/Bootstrap.php">
2013-03-06 17:04:49 +00:00
<testsuites>
2014-01-16 16:51:06 +00:00
<testsuite name="Tests">
<directory>./tests/</directory>
</testsuite>
2013-03-06 17:04:49 +00:00
</testsuites>
<filter>
2014-01-16 16:51:06 +00:00
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
2013-03-06 17:04:49 +00:00
</filter>
<logging>
2014-01-16 16:51:06 +00:00
<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 17:04:49 +00:00
</logging>
</phpunit>