-
Notifications
You must be signed in to change notification settings - Fork 18
/
phpunit.xml.dist
executable file
·34 lines (34 loc) · 1.88 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" beStrictAboutChangesToGlobalState="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false" requireCoverageMetadata="true">
<php>
<!-- http://php.net/manual/en/ini.list.php -->
<ini name="date.timezone" value="Europe/Berlin"/>
<ini name="display_errors" value="stderr"/>
<ini name="display_startup_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
<ini name="html_errors" value="0"/>
<ini name="log_errors" value="0"/>
<ini name="memory_limit" value="-1"/>
<ini name="report_memleaks" value="1"/>
<!-- http://xdebug.org/docs/all_settings -->
<ini name="xdebug.collect_params" value="1"/>
<ini name="xdebug.cli_color" value="1"/>
<ini name="xdebug.manual_url" value="http://de.php.net"/>
<ini name="xdebug.scream" value="0"/>
<!-- If this setting is 1, then Xdebug will disable the @ (shut-up) operator so that notices, warnings and errors are no longer hidden. -->
<ini name="xdebug.show_exception_trace" value="0"/>
<!-- When this setting is set to 1, Xdebug will show a stack trace whenever an exception is raised - even if this exception is actually caught. -->
<!-- set HOST to phpunit.local so generated links looks like http://phpunit.local/foo?bar=baz instead of http:///foo?bar=baz -->
<server name="HTTP_HOST" value="phpunit.local"/>
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<testsuites>
<testsuite name="Ghostscript Test Suite">
<directory>tests/src</directory>
</testsuite>
</testsuites>
</phpunit>