2016-09-29 14:09:23 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-10-02 20:37:28 +00:00
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
failOnWarning="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
verbose="true"
|
|
|
|
>
|
2016-09-30 10:20:53 +00:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="PHP Language Server Test Suite">
|
2017-10-02 20:37:28 +00:00
|
|
|
<directory suffix="Test.php">./tests</directory>
|
2016-09-30 10:20:53 +00:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
2017-10-02 20:37:28 +00:00
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">./src</directory>
|
2016-09-30 10:20:53 +00:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2017-04-02 12:08:45 +00:00
|
|
|
<php>
|
2017-06-09 18:25:30 +00:00
|
|
|
<ini name="memory_limit" value="1024M"/>
|
2017-04-02 12:08:45 +00:00
|
|
|
</php>
|
2016-09-29 14:09:23 +00:00
|
|
|
</phpunit>
|