hyperf/phpunit.xml.dist

16 lines
670 B
Plaintext
Raw Permalink Normal View History

2019-01-13 03:06:53 +08:00
<?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>
2019-01-13 03:06:53 +08:00
</phpunit>