mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-15 10:38:46 +00:00
40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation = "http://schema.phpunit.de/3.7/phpunit.xsd"
|
|
backupGlobals = "true"
|
|
backupStaticAttributes = "false"
|
|
colors = "true"
|
|
convertNoticesToExceptions = "true"
|
|
convertWarningsToExceptions = "true"
|
|
convertErrorsToExceptions = "true"
|
|
processIsolation = "false"
|
|
stopOnFailure = "false"
|
|
stopOnError = "false"
|
|
syntaxCheck = "true"
|
|
bootstrap = "bootstrap.php">
|
|
|
|
<testsuites>
|
|
<testsuite name="AllTests">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">../</directory>
|
|
<exclude>
|
|
<directory>../.git</directory>
|
|
<directory>../.github</directory>
|
|
<directory>../XTemplate</directory>
|
|
<directory>../cache</directory>
|
|
<directory>../vendor</directory>
|
|
<directory>../tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<php>
|
|
<ini name="display_errors" value="true"/>
|
|
</php>
|
|
|
|
</phpunit>
|