-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathphpunit.unit.xml
More file actions
19 lines (19 loc) · 1.03 KB
/
phpunit.unit.xml
File metadata and controls
19 lines (19 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" bootstrap="Tests/Unit/UnitTestsBootstrap.php" cacheDirectory=".project/temp/.phpunit.unit.cache" executionOrder="depends,defects" beStrictAboutCoverageMetadata="true" beStrictAboutOutputDuringTests="true" backupGlobals="true" failOnRisky="true" failOnWarning="true">
<logging>
<junit outputFile=".project/artifacts/unittests/junit.xml"/>
<teamcity outputFile=".project/artifacts/unittests/teamcity.txt"/>
<testdoxHtml outputFile=".project/artifacts/unittests/testdox.html"/>
<testdoxText outputFile=".project/artifacts/unittests/testdox.txt"/>
</logging>
<testsuites>
<testsuite name="Unit">
<directory>Tests/Unit/</directory>
</testsuite>
</testsuites>
<source restrictNotices="true" restrictWarnings="true" ignoreIndirectDeprecations="true">
<include>
<directory>Classes</directory>
</include>
</source>
</phpunit>