cops/phpunit.xml

24 líneas
801 B
XML
Original Vista normal Histórico

2013-10-03 12:48:02 +03:00
<phpunit>
2013-12-05 11:52:51 +02:00
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<!-- this is the path of the files included in your clover report -->
<directory suffix=".php">./</directory>
<exclude>
<directory suffix=".php">./resources</directory>
<directory suffix=".php">./test</directory>
2013-12-31 12:14:36 +02:00
<directory suffix=".php">./saucetest</directory>
2013-12-04 23:40:50 +02:00
<file>config.php</file>
<file>config_default.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./clover.xml"/>
</logging>
<testsuites>
<testsuite name="COPS">
<directory>test</directory>
</testsuite>
</testsuites>
2013-10-03 09:38:58 +03:00
</phpunit>