-
Notifications
You must be signed in to change notification settings - Fork 23
/
phpunit.xml.coverage
33 lines (33 loc) · 1.03 KB
/
phpunit.xml.coverage
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="tests/bootstrap.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<coverage>
<report>
<html outputDirectory="storage/app/tests/report"/>
</report>
</coverage>
<testsuites>
<testsuite name="Main Test Suite">
<directory>./tests/</directory>
</testsuite>
<testsuite name="App Test Suite">
<directory>./app/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>ignoredGroup</group>
</exclude>
</groups>
<logging/>
<php>
<env name="RUNTIME_ENVIRONMENT" value="env.phpunit"/>
</php>
<source>
<include>
<directory suffix=".php">./app/</directory>
</include>
<exclude>
<directory suffix="Test.php">./app/</directory>
</exclude>
</source>
</phpunit>