This repository was archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
36 lines (36 loc) · 1.32 KB
/
phpunit.xml.dist
File metadata and controls
36 lines (36 loc) · 1.32 KB
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
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<html outputDirectory="build/html" lowUpperBound="50" highLowerBound="90"/>
<text outputFile="build/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
</report>
</coverage>
<php>
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="file"/>
<server name="API_ERROR_LOGGING" value="true"/>
<server name="TEST_BASE_URL" value="test"/>
<server name="TEST_CLIENT_KEY" value="test"/>
<server name="TEST_CLIENT_ID" value="test"/>
<server name="TEST_OAUTH" value="test"/>
</php>
</phpunit>