mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-30 02:37:58 +08:00
16 lines
670 B
XML
16 lines
670 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="./bootstrap.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
|
|
<coverage/>
|
|
<testsuites>
|
|
<testsuite name="Tests">
|
|
<directory suffix="Test.php">./src/*/tests</directory>
|
|
<exclude>./src/reactive-x/tests</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">./src/*/src</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|