2022-12-19 17:20:04 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-10-30 14:30:31 +08:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
bootstrap="./tests/bootstrap.php"
|
|
|
|
|
colors="true"
|
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd">
|
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
|
<include>
|
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
|
</include>
|
|
|
|
|
</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-10-30 14:30:31 +08:00
|
|
|
</phpunit>
|