mirror of
https://github.com/elyby/mojang-api.git
synced 2024-11-23 05:33:10 +05:30
33 lines
942 B
XML
33 lines
942 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.0/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
>
|
|
<logging>
|
|
<log
|
|
type="coverage-html"
|
|
target="./build/coverage/html"
|
|
/>
|
|
<log
|
|
type="coverage-clover"
|
|
target="./build/coverage/log/coverage.xml"
|
|
/>
|
|
</logging>
|
|
<testsuites>
|
|
<testsuite name="Package Test Suite">
|
|
<directory suffix=".php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./</directory>
|
|
<exclude>
|
|
<directory suffix=".php">./vendor</directory>
|
|
<directory suffix=".php">./tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|