Skip to content

Commit 4ba4d71

Browse files
committed
Migrate to phpunit 10
Signed-off-by: Aleksei Khudiakov <aleksey@xerkus.pro>
1 parent 362dd29 commit 4ba4d71

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/.phpcs-cache
2-
/.phpunit.result.cache
2+
/.phpunit.cache
33
/.psalm-cache
44
/docs/html/
55
/laminas-mkdoc-theme.tgz

phpunit.xml.dist

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,20 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
55
bootstrap="test/bootstrap.php"
6-
convertDeprecationsToExceptions="true"
7-
colors="true">
8-
<coverage processUncoveredFiles="true">
6+
cacheDirectory=".phpunit.cache"
7+
displayDetailsOnIncompleteTests="true"
8+
displayDetailsOnSkippedTests="true"
9+
displayDetailsOnTestsThatTriggerDeprecations="true"
10+
displayDetailsOnTestsThatTriggerErrors="true"
11+
displayDetailsOnTestsThatTriggerNotices="true"
12+
displayDetailsOnTestsThatTriggerWarnings="true"
13+
colors="true"
14+
>
15+
<source>
916
<include>
1017
<directory suffix=".php">./src</directory>
1118
</include>
12-
</coverage>
19+
</source>
1320

1421
<testsuites>
1522
<testsuite name="laminas-mvc-plugin-fileprg Test Suite">

0 commit comments

Comments
 (0)