You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
711 B
20 lines
711 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="autoload.php" backupGlobals="false"
|
|
backupStaticAttributes="false" strict="true" verbose="true">
|
|
<testsuite name="UserManager">
|
|
<directory suffix="Test.php">classes</directory>
|
|
</testsuite>
|
|
<logging>
|
|
<log type="coverage-clover" target="../logs/clover.xml"/>
|
|
<log type="coverage-html" target="../coverage" title="UserManager"/>
|
|
<log type="junit" target="../logs/junit.xml"/>
|
|
</logging>
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">../../main</directory>
|
|
<exclude>
|
|
<file>inc/autoload.inc.php</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|
|
|