mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
18 lines
551 B
XML
18 lines
551 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit colors="true"
|
||
|
stopOnFailure="false"
|
||
|
bootstrap="./vendor/autoload.php"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true">
|
||
|
<testsuites>
|
||
|
<testsuite name="common">
|
||
|
<directory suffix="Test.php">./tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory suffix=".php">./src/</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
</phpunit>
|