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.
29 lines
972 B
29 lines
972 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="bootstrap.php"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
strict="true"
|
|
verbose="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Chamilo LMS classes">
|
|
<directory suffix="Test.class.php">../phpunit/classes</directory>
|
|
<directory suffix="Test.lib.php">../phpunit/classes</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">../../main/inc</directory>
|
|
<exclude>
|
|
<!--file>global.inc.php</file-->
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|
|
|