Skip to content

Commit 4ac9f67

Browse files
committed
build: Upgrade PHPUnit from ^8.5 to 9.5.28
Bug: T320245 Change-Id: Ib1050afe2ad246fef3b4088686d35219222d597b
1 parent fc29fd2 commit 4ac9f67

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
@@ -28,7 +28,7 @@
2828
"ockcyp/covers-validator": "1.6.0",
2929
"php-parallel-lint/php-console-highlighter": "1.0.0",
3030
"php-parallel-lint/php-parallel-lint": "1.3.2",
31-
"phpunit/phpunit": "^8.5"
31+
"phpunit/phpunit": "9.5.28"
3232
},
3333
"scripts": {
3434
"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="textcat 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="textcat Tests">
10+
<directory>./tests</directory>
11+
</testsuite>
12+
</testsuites>
1413
</phpunit>

0 commit comments

Comments
 (0)