-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
36 lines (31 loc) · 934 Bytes
/
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
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<!--
Reun Media PHPUnit configuration for Pest
Run `./vendor/bin/pest \-\-generate-configuration` to create a new file with
default configuration.
@copyright 2020 Reun Media
@see https://github.com/Reun-Media/php-app-template
@version 3.0.1
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">tests/pest</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<coverage pathCoverage="true">
<report>
<html outputDirectory="_phpunit/coverage-report-html"
lowUpperBound="30"
highLowerBound="70" />
</report>
</coverage>
</phpunit>