-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 787 Bytes
/
Copy pathphpunit.xml
File metadata and controls
21 lines (21 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" colors="true"
bootstrap="tests/bootstrap.php" executionOrder="random" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="coverage" lowUpperBound="20" highLowerBound="50"/>
</report>
</coverage>
<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>