oauth2-client/phpunit.xml

23 lines
696 B
XML
Raw Normal View History

2013-02-26 16:02:34 +04:00
<?xml version="1.0" encoding="UTF-8"?>
2014-04-25 19:31:19 +04:00
<phpunit colors="true" bootstrap="./test/Bootstrap.php">
2013-02-26 16:02:34 +04:00
<testsuites>
2014-04-25 19:31:19 +04:00
<testsuite name="all">
<directory>./test</directory>
2013-02-26 16:02:34 +04:00
</testsuite>
</testsuites>
2014-04-25 19:31:19 +04:00
<filter>
2014-05-03 14:30:26 +04:00
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
2013-02-26 16:02:34 +04:00
<logging>
2014-05-03 14:30:26 +04:00
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
2013-11-18 06:45:28 +04:00
</phpunit>