Skip to content

Commit 26987cc

Browse files
author
Andrey Helldar
committed
Update phpunit.xml
1 parent 4585c0e commit 26987cc

File tree

1 file changed

+19
-23
lines changed

1 file changed

+19
-23
lines changed

phpunit.xml

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,30 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/latest/phpunit.xsd"
5-
backupGlobals="false"
6-
backupStaticAttributes="false"
7-
bootstrap="vendor/autoload.php"
8-
colors="true"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
12-
forceCoversAnnotation="false"
13-
processIsolation="false"
14-
stopOnError="false"
15-
stopOnFailure="false"
16-
stopOnIncomplete="false"
17-
stopOnSkipped="false"
18-
stopOnRisky="false"
19-
verbose="false"
20-
>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
cacheResultFile=".phpunit.cache/test-results"
6+
executionOrder="depends,defects"
7+
forceCoversAnnotation="true"
8+
beStrictAboutCoversAnnotation="true"
9+
beStrictAboutOutputDuringTests="true"
10+
beStrictAboutTodoAnnotatedTests="true"
11+
failOnRisky="true"
12+
failOnWarning="true"
13+
verbose="true">
2114
<php>
2215
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
2316
</php>
2417
<testsuites>
25-
<testsuite name="Test Suite">
26-
<directory suffix="Test.php">./tests</directory>
18+
<testsuite name="default">
19+
<directory suffix="Test.php">tests</directory>
2720
</testsuite>
2821
</testsuites>
29-
<coverage processUncoveredFiles="true">
22+
23+
<coverage
24+
cacheDirectory=".phpunit.cache/code-coverage"
25+
processUncoveredFiles="true">
3026
<include>
31-
<directory suffix=".php">./app</directory>
27+
<directory suffix=".php">src</directory>
3228
</include>
3329
</coverage>
3430
</phpunit>

0 commit comments

Comments
 (0)