oauth2-server/build/phpunit.xml

23 lines
1022 B
XML
Raw Normal View History

2012-08-01 21:45:16 +05:30
<?xml version="1.0" encoding="UTF-8"?>
2012-08-27 18:53:26 +05:30
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
2012-08-01 21:45:16 +05:30
<testsuites>
2012-08-23 16:51:59 +05:30
<testsuite name="Authentication Server">
<directory suffix="test.php">../tests/authentication</directory>
2012-08-01 21:45:16 +05:30
</testsuite>
2012-08-23 16:51:59 +05:30
<testsuite name="Resource Server">
<directory suffix="test.php">../tests/resource</directory>
</testsuite>
2012-08-01 21:45:16 +05:30
</testsuites>
2012-08-27 18:53:26 +05:30
<filter>
2012-08-01 21:45:16 +05:30
<blacklist>
<directory suffix=".php">PEAR_INSTALL_DIR</directory>
<directory suffix=".php">PHP_LIBDIR</directory>
2012-08-27 18:53:26 +05:30
<directory suffix=".php">../vendor/composer</directory>
2012-08-01 21:45:16 +05:30
</blacklist>
2012-08-27 18:53:26 +05:30
</filter>
<logging>
2012-08-27 18:53:26 +05:30
<log type="coverage-html" target="coverage" title="lncd/OAuth" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="logs/clover.xml"/>
<log type="junit" target="logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
2012-08-01 21:45:16 +05:30
</phpunit>