mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
19 lines
534 B
Plaintext
19 lines
534 B
Plaintext
|
<?xml version="1.0" ?>
|
||
|
<phpunit bootstrap="./vendor/autoload.php" colors="true">
|
||
|
<testsuites>
|
||
|
<testsuite name="tests">
|
||
|
<directory suffix="Test.php">tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<logging>
|
||
|
<log charset="UTF-8" target="coverage" type="coverage-html"/>
|
||
|
</logging>
|
||
|
<filter>
|
||
|
<blacklist>
|
||
|
<directory>examples</directory>
|
||
|
<directory>tests</directory>
|
||
|
<directory>vendor</directory>
|
||
|
</blacklist>
|
||
|
</filter>
|
||
|
</phpunit>
|