-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (32 loc) · 1.14 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
backupGlobals="true"
bootstrap="tests/bootstrap.php"
>
<coverage
processUncoveredFiles="true"
ignoreDeprecatedCodeUnits="true"
>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="cov">
<directory suffix="Test.php">tests/unit/cov</directory>
</testsuite>
<testsuite name="no_cov">
<directory suffix="Test.php">tests/unit/no_cov</directory>
</testsuite>
<testsuite name="unmocked_no_cov">
<directory suffix="Test.php">tests/unit/unmocked_no_cov</directory>
</testsuite>
<testsuite name="mocked_phpunit">
<directory suffix="Test.php">tests/unit/mocked_phpunit</directory>
</testsuite>
<testsuite name="mocked_phpunit_no_asserts">
<directory suffix="Test.php">tests/unit/mocked_phpunit_no_asserts</directory>
</testsuite>
</testsuites>
</phpunit>