2022-12-19 17:20:04 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-12-04 17:12:12 +08:00
|
|
|
<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/>
|
2022-12-20 15:08:04 +08:00
|
|
|
<testsuites>
|
2023-10-30 14:30:31 +08:00
|
|
|
<testsuite name="Tests">
|
|
|
|
|
<directory>./tests</directory>
|
2022-12-20 15:08:04 +08:00
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
2023-12-04 17:12:12 +08:00
|
|
|
<source>
|
|
|
|
|
<include>
|
|
|
|
|
<directory>./app</directory>
|
|
|
|
|
</include>
|
|
|
|
|
</source>
|
|
|
|
|
</phpunit>
|