This repository was archived by the owner on Jun 8, 2022. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
28 lines (28 loc) · 1011 Bytes
/
Copy pathphpunit.xml
File metadata and controls
28 lines (28 loc) · 1011 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
processIsolation="true"
stopOnFailure="true"
bootstrap="config/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.4/phpunit.xsd">
<coverageprocessUncoveredFiles="true">
<include>
<directorysuffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuitename="Unit">
<directorysuffix="Test.php">./tests/Unit/</directory>
</testsuite>
<testsuitename="Integration">
<directorysuffix="Test.php">./tests/Integration/</directory>
</testsuite>
</testsuites>
<php>
<envname="APP_ENV"value="test"force="true" />
<envname="DB_DRIVER"value="sqlite"force="true" />
<envname="DB_DATABASE"value=":memory:"force="true" />
<envname="DB_HOST"value="localhost"force="true" />
</php>
</phpunit>