2023-03-21 16:56:42 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-12-18 15:46:04 +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/>
|
2023-03-21 16:56:42 +08:00
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="Tests">
|
2023-10-13 15:06:48 +08:00
|
|
|
<directory>./tests</directory>
|
2023-03-21 16:56:42 +08:00
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
2023-12-18 15:46:04 +08:00
|
|
|
<source>
|
|
|
|
|
<include>
|
|
|
|
|
<directory>./app</directory>
|
|
|
|
|
</include>
|
|
|
|
|
</source>
|
|
|
|
|
</phpunit>
|