Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
20 lines (20 loc) · 1 KB
/
Copy pathphpunit.xml
File metadata and controls
20 lines (20 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"backupGlobals="false"backupStaticAttributes="false"colors="true"convertErrorsToExceptions="true"convertNoticesToExceptions="true"convertWarningsToExceptions="true"processIsolation="false"stopOnFailure="false"stopOnError="false"stopOnIncomplete="false"stopOnSkipped="false"bootstrap="vendor/autoload.php"xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directorysuffix=".php">src/</directory>
</include>
</coverage>
<testsuites>
<testsuitename="all">
<directorysuffix="Test.php">tests/Unit/</directory>
<directorysuffix="Test.php">tests/Integration/</directory>
</testsuite>
<testsuitename="unit">
<directorysuffix="Test.php">tests/Unit/</directory>
</testsuite>
<testsuitename="integration">
<directorysuffix="Test.php">tests/Integration/</directory>
</testsuite>
</testsuites>
</phpunit>