Skip to content

Commit b713ad1

Browse files
committed
Upgrade to PHPUnit 10.
1 parent b769ff4 commit b713ad1

6 files changed

+18
-15
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ build
22
composer.lock
33
vendor
44
.phpunit.result.cache
5+
.phpunit.cache
56
/vendor-bin/**/vendor
67
.env
78
profiles

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"require-dev": {
2424
"phpbench/phpbench": "^1.2",
2525
"phpstan/phpstan": "^1.10",
26-
"phpunit/phpunit": "~9.0",
26+
"phpunit/phpunit": "~10.3",
2727
"psr/cache": "^3.0",
2828
"psr/cache-util": "^2.0"
2929
},

phpunit.xml.dist

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
33
<coverage>
4-
<include>
5-
<directory suffix=".php">src/</directory>
6-
</include>
7-
<exclude>
8-
<directory suffix=".php">src/Attributes/Reflect</directory>
9-
</exclude>
104
<report>
115
<clover outputFile="build/logs/clover.xml"/>
126
<html outputDirectory="build/coverage"/>
@@ -21,4 +15,12 @@
2115
<logging>
2216
<junit outputFile="build/report.junit.xml"/>
2317
</logging>
18+
<source>
19+
<include>
20+
<directory suffix=".php">src/</directory>
21+
</include>
22+
<exclude>
23+
<directory suffix=".php">src/Attributes/Reflect</directory>
24+
</exclude>
25+
</source>
2426
</phpunit>

tests/ClassAnalyzerTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function analyze_anonymous_objects(): void
123123
/**
124124
* @see analyze_classes()
125125
*/
126-
public function attributeTestProvider(): \Generator
126+
public static function attributeTestProvider(): \Generator
127127
{
128128
yield 'Generic' => [
129129
'subject' => Point::class,
@@ -434,7 +434,7 @@ public function analyze_classes_scoped(string $subject, string $attribute, array
434434
$tests($classDef);
435435
}
436436

437-
public function scopedAttributeTestProvider(): iterable
437+
public static function scopedAttributeTestProvider(): iterable
438438
{
439439
yield 'Incl by default: true; scope: One' => [
440440
'subject' => ClassWithScopes::class,
@@ -741,9 +741,9 @@ public function scopedAttributeTestProvider(): iterable
741741
/**
742742
* @see analyze_objects()
743743
*/
744-
public function attributeObjectTestProvider(): iterable
744+
public static function attributeObjectTestProvider(): iterable
745745
{
746-
$tests = iterator_to_array($this->attributeTestProvider());
746+
$tests = iterator_to_array(self::attributeTestProvider());
747747

748748
// For enum tests, skip those entirely since there's nothing to instantiate.
749749
if (function_exists('\enum_exists')) {

tests/ReflectTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function analyze_enums(string $subject, callable $test): void
4747
$test($classDef);
4848
}
4949

50-
public function enumAttributeExamples(): iterable
50+
public static function enumAttributeExamples(): iterable
5151
{
5252
yield Suit::class => [
5353
'subject' => Suit::class,
@@ -86,7 +86,7 @@ public function enumAttributeExamples(): iterable
8686
];
8787
}
8888

89-
public function classAttributeExamples(): iterable
89+
public static function classAttributeExamples(): iterable
9090
{
9191
yield NoProps::class => [
9292
'subject' => NoProps::class,

tests/TypeDefTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function typedefs(string $methodName, callable $test): void
2727
$test($def);
2828
}
2929

30-
public function typeDefProvider(): iterable
30+
public static function typeDefProvider(): iterable
3131
{
3232
yield 'simpleInt' => [
3333
'subject' => 'simpleInt',

0 commit comments

Comments
 (0)