Files
hdk-skeleton/phpunit.xml

21 lines
563 B
XML
Raw Permalink Normal View History

2023-03-21 16:56:42 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="./tests/bootstrap.php"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
cacheDirectory=".phpunit.cache"
>
<coverage/>
2023-03-21 16:56:42 +08:00
<testsuites>
<testsuite name="Tests">
<directory>./tests</directory>
2023-03-21 16:56:42 +08:00
</testsuite>
</testsuites>
<source>
<include>
<directory>./app</directory>
</include>
</source>
</phpunit>