-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (22 loc) · 792 Bytes
/
phpunit.xml
File metadata and controls
24 lines (22 loc) · 792 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Unit">
<directory suffix=".php">tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix=".php">tests/Feature</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<php>
<ini name="display_errors" value="stderr"/>
<ini name="error_log" value="/dev/null"/>
<env name="BPE_WEBSITE_KEY" value="test_website_key_12345"/>
<env name="BPE_SECRET_KEY" value="test_secret_key_67890abcdef"/>
</php>
</phpunit>