Skip to content

Commit 89423ac

Browse files
committed
build: Upgrade PHPUnit from ^8.5 to 9.5.28
Bug: T320245 Change-Id: Ia79303006429cfc8c9966c7411b308ef7a777d73
1 parent 7b31aab commit 89423ac

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"ockcyp/covers-validator": "1.6.0",
3737
"php-parallel-lint/php-console-highlighter": "1.0.0",
3838
"php-parallel-lint/php-parallel-lint": "1.3.2",
39-
"phpunit/phpunit": "^8.5"
39+
"phpunit/phpunit": "9.5.28"
4040
},
4141
"scripts": {
4242
"test": [

phpunit.xml.dist

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
<phpunit colors="true"
2-
beStrictAboutTestsThatDoNotTestAnything="true"
3-
beStrictAboutOutputDuringTests="true">
4-
<testsuites>
5-
<testsuite name="testing-access-wrapper Tests">
6-
<directory>./tests</directory>
7-
</testsuite>
8-
</testsuites>
9-
<filter>
10-
<whitelist addUncoveredFilesFromWhitelist="true">
11-
<directory suffix=".php">./src</directory>
12-
</whitelist>
13-
</filter>
1+
<?xml version="1.0"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage includeUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">./src</directory>
6+
</include>
7+
</coverage>
8+
<testsuites>
9+
<testsuite name="testing-access-wrapper Tests">
10+
<directory>./tests</directory>
11+
</testsuite>
12+
</testsuites>
1413
</phpunit>

0 commit comments

Comments
 (0)