2013-03-06 22:34:49 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-02-12 23:38:35 +05:30
|
|
|
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="true"
|
|
|
|
stopOnFailure="true" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="tests/Bootstrap.php">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Tests">
|
|
|
|
<directory>./tests/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
|
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">src/ResponseTypes/DefaultTemplates</directory>
|
2016-03-10 23:15:31 +05:30
|
|
|
<directory suffix=".php">src/TemplateRenderer</directory>
|
2016-02-12 23:38:35 +05:30
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<logging>
|
|
|
|
<log type="coverage-text" target="php://stdout" title="thephpleague/oauth2-server" charset="UTF-8" yui="true"
|
|
|
|
highlight="true" lowUpperBound="60" highLowerBound="90"/>
|
|
|
|
<log type="coverage-html" target="build/coverage" title="thephpleague/oauth2-server" charset="UTF-8" yui="true"
|
|
|
|
highlight="true" lowUpperBound="60" highLowerBound="90"/>
|
|
|
|
</logging>
|
2013-07-30 14:47:59 +05:30
|
|
|
</phpunit>
|