mirror of
https://github.com/php/web-bugs.git
synced 2026-03-24 07:42:08 +01:00
27 lines
760 B
XML
27 lines
760 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.1/phpunit.xsd"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
bootstrap="tests/bootstrap.php">
|
|
<php>
|
|
<ini name="error_reporting" value="-1" />
|
|
<ini name="date.timezone" value="UTC" />
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="The PHP bugtracking system test suite">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|