zhamao-framework/phpunit.xml.dist

34 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-03-28 16:34:26 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2022-03-28 17:27:36 +08:00
<phpunit bootstrap="./tests/bootstrap.php"
backupGlobals="false"
2022-03-28 16:34:26 +08:00
backupStaticAttributes="false"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
2022-03-28 17:27:36 +08:00
testdox="true"
verbose="true"
2022-03-28 16:34:26 +08:00
>
<testsuites>
<testsuite name="Zhamao Framework Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
2022-03-28 20:09:44 +08:00
<coverage>
2022-03-28 16:45:32 +08:00
<include>
<directory suffix=".php">./src/ZM</directory>
</include>
2022-03-28 20:09:44 +08:00
<report>
<html outputDirectory="./build/html-coverage"/>
<clover outputFile="./build/coverage.xml"/>
</report>
2022-03-28 16:45:32 +08:00
</coverage>
2022-03-28 16:34:26 +08:00
<php>
2023-03-07 23:07:52 +08:00
<env name="PHPUNIT_RUNNING" value="1"/>
2022-03-28 16:34:26 +08:00
</php>
2022-03-28 20:09:44 +08:00
</phpunit>