File: 0003-Modernize-PHPUnit-syntax.patch

package info (click to toggle)
php-phpdocumentor-type-resolver 1.10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,312 kB
  • sloc: php: 25,713; xml: 102; makefile: 50
file content (296 lines) | stat: -rw-r--r-- 10,876 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Mon, 17 Feb 2025 18:42:12 +0100
Subject: Modernize PHPUnit syntax

---
 tests/unit/PseudoTypes/IntRangeTest.php      |  3 ++-
 tests/unit/PseudoTypes/ListTest.php          |  3 ++-
 tests/unit/PseudoTypes/NonEmptyArrayTest.php |  3 ++-
 tests/unit/PseudoTypes/NonEmptyListTest.php  |  3 ++-
 tests/unit/TypeResolverTest.php              | 21 +++++++++++----------
 tests/unit/Types/ArrayTest.php               |  3 ++-
 tests/unit/Types/ClassStringTest.php         |  3 ++-
 tests/unit/Types/CollectionTest.php          |  3 ++-
 tests/unit/Types/InterfaceStringTest.php     |  3 ++-
 tests/unit/Types/IterableTest.php            |  3 ++-
 10 files changed, 29 insertions(+), 19 deletions(-)

diff --git a/tests/unit/PseudoTypes/IntRangeTest.php b/tests/unit/PseudoTypes/IntRangeTest.php
index 3147374..388beb3 100644
--- a/tests/unit/PseudoTypes/IntRangeTest.php
+++ b/tests/unit/PseudoTypes/IntRangeTest.php
@@ -13,6 +13,7 @@ declare(strict_types=1);
 
 namespace phpDocumentor\Reflection\PseudoTypes;
 
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -21,9 +22,9 @@ use PHPUnit\Framework\TestCase;
 class IntRangeTest extends TestCase
 {
     /**
-     * @dataProvider provideArrays
      * @covers ::__toString
      */
+    #[DataProvider('provideArrays')]
     public function testArrayStringifyCorrectly(IntegerRange $array, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/PseudoTypes/ListTest.php b/tests/unit/PseudoTypes/ListTest.php
index ac74bea..631a452 100644
--- a/tests/unit/PseudoTypes/ListTest.php
+++ b/tests/unit/PseudoTypes/ListTest.php
@@ -17,6 +17,7 @@ use phpDocumentor\Reflection\Types\Compound;
 use phpDocumentor\Reflection\Types\Integer;
 use phpDocumentor\Reflection\Types\Mixed_;
 use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -25,9 +26,9 @@ use PHPUnit\Framework\TestCase;
 class ListTest extends TestCase
 {
     /**
-     * @dataProvider provideArrays
      * @covers ::__toString
      */
+    #[DataProvider('provideArrays')]
     public function testArrayStringifyCorrectly(List_ $array, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/PseudoTypes/NonEmptyArrayTest.php b/tests/unit/PseudoTypes/NonEmptyArrayTest.php
index f7d2951..85613ce 100644
--- a/tests/unit/PseudoTypes/NonEmptyArrayTest.php
+++ b/tests/unit/PseudoTypes/NonEmptyArrayTest.php
@@ -17,6 +17,7 @@ use phpDocumentor\Reflection\Types\Compound;
 use phpDocumentor\Reflection\Types\Integer;
 use phpDocumentor\Reflection\Types\Mixed_;
 use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -25,9 +26,9 @@ use PHPUnit\Framework\TestCase;
 class NonEmptyArrayTest extends TestCase
 {
     /**
-     * @dataProvider provideArrays
      * @covers ::__toString
      */
+    #[DataProvider('provideArrays')]
     public function testArrayStringifyCorrectly(NonEmptyArray $array, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/PseudoTypes/NonEmptyListTest.php b/tests/unit/PseudoTypes/NonEmptyListTest.php
index 545067e..6ef1b0d 100644
--- a/tests/unit/PseudoTypes/NonEmptyListTest.php
+++ b/tests/unit/PseudoTypes/NonEmptyListTest.php
@@ -17,6 +17,7 @@ use phpDocumentor\Reflection\Types\Compound;
 use phpDocumentor\Reflection\Types\Integer;
 use phpDocumentor\Reflection\Types\Mixed_;
 use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -25,9 +26,9 @@ use PHPUnit\Framework\TestCase;
 class NonEmptyListTest extends TestCase
 {
     /**
-     * @dataProvider provideArrays
      * @covers ::__toString
      */
+    #[DataProvider('provideArrays')]
     public function testArrayStringifyCorrectly(NonEmptyList $array, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/TypeResolverTest.php b/tests/unit/TypeResolverTest.php
index c10fa1c..ffb38d3 100644
--- a/tests/unit/TypeResolverTest.php
+++ b/tests/unit/TypeResolverTest.php
@@ -70,6 +70,7 @@ use phpDocumentor\Reflection\Types\Static_;
 use phpDocumentor\Reflection\Types\String_;
 use phpDocumentor\Reflection\Types\This;
 use phpDocumentor\Reflection\Types\Void_;
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 use RuntimeException;
 use stdClass;
@@ -93,8 +94,8 @@ class TypeResolverTest extends TestCase
      * @covers ::createType
      * @covers ::<private>
      *
-     * @dataProvider provideKeywords
      */
+    #[DataProvider('provideKeywords')]
     public function testResolvingKeywords(string $keyword, string $expectedClass): void
     {
         $fixture = new TypeResolver();
@@ -114,8 +115,8 @@ class TypeResolverTest extends TestCase
      * @covers ::createType
      * @covers ::<private>
      *
-     * @dataProvider provideClassStrings
      */
+    #[DataProvider('provideClassStrings')]
     public function testResolvingClassStrings(string $classString, bool $throwsException): void
     {
         $fixture = new TypeResolver();
@@ -139,8 +140,8 @@ class TypeResolverTest extends TestCase
      * @covers ::createType
      * @covers ::<private>
      *
-     * @dataProvider provideInterfaceStrings
      */
+    #[DataProvider('provideInterfaceStrings')]
     public function testResolvingInterfaceStrings(string $interfaceString, bool $throwsException): void
     {
         $fixture = new TypeResolver();
@@ -165,8 +166,8 @@ class TypeResolverTest extends TestCase
      * @covers ::createType
      * @covers ::<private>
      *
-     * @dataProvider provideFqcn
      */
+    #[DataProvider('provideFqcn')]
     public function testResolvingFQSENs(string $fqsen): void
     {
         $fixture = new TypeResolver();
@@ -883,14 +884,14 @@ class TypeResolverTest extends TestCase
      * @covers ::__construct
      * @covers ::resolve
      * @covers ::createType
-     * @dataProvider typeProvider
-     * @dataProvider genericsProvider
-     * @dataProvider callableProvider
-     * @dataProvider constExpressions
-     * @dataProvider shapeStructures
-     * @dataProvider illegalLegacyFormatProvider
      * @testdox create type from $type
      */
+    #[DataProvider('typeProvider')]
+    #[DataProvider('genericsProvider')]
+    #[DataProvider('callableProvider')]
+    #[DataProvider('constExpressions')]
+    #[DataProvider('shapeStructures')]
+    #[DataProvider('illegalLegacyFormatProvider')]
     public function testTypeBuilding(string $type, Type $expected, bool $deprecation = false): void
     {
         if ($deprecation) {
diff --git a/tests/unit/Types/ArrayTest.php b/tests/unit/Types/ArrayTest.php
index d007c5a..61c3d97 100644
--- a/tests/unit/Types/ArrayTest.php
+++ b/tests/unit/Types/ArrayTest.php
@@ -13,6 +13,7 @@ declare(strict_types=1);
 
 namespace phpDocumentor\Reflection\Types;
 
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -21,9 +22,9 @@ use PHPUnit\Framework\TestCase;
 class ArrayTest extends TestCase
 {
     /**
-     * @dataProvider provideArrays
      * @covers ::__toString
      */
+    #[DataProvider('provideArrays')]
     public function testArrayStringifyCorrectly(Array_ $array, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/Types/ClassStringTest.php b/tests/unit/Types/ClassStringTest.php
index 5a37dd3..d4fd6d5 100644
--- a/tests/unit/Types/ClassStringTest.php
+++ b/tests/unit/Types/ClassStringTest.php
@@ -14,6 +14,7 @@ declare(strict_types=1);
 namespace phpDocumentor\Reflection\Types;
 
 use phpDocumentor\Reflection\Fqsen;
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -22,9 +23,9 @@ use PHPUnit\Framework\TestCase;
 class ClassStringTest extends TestCase
 {
     /**
-     * @dataProvider provideClassStrings
      * @covers ::__toString
      */
+    #[DataProvider('provideClassStrings')]
     public function testClassStringStringifyCorrectly(ClassString $array, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/Types/CollectionTest.php b/tests/unit/Types/CollectionTest.php
index a01ffcd..6aa0c98 100644
--- a/tests/unit/Types/CollectionTest.php
+++ b/tests/unit/Types/CollectionTest.php
@@ -14,6 +14,7 @@ declare(strict_types=1);
 namespace phpDocumentor\Reflection\Types;
 
 use phpDocumentor\Reflection\Fqsen;
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -22,9 +23,9 @@ use PHPUnit\Framework\TestCase;
 class CollectionTest extends TestCase
 {
     /**
-     * @dataProvider provideCollections
      * @covers ::__toString
      */
+    #[DataProvider('provideCollections')]
     public function testCollectionStringifyCorrectly(Collection $collection, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $collection);
diff --git a/tests/unit/Types/InterfaceStringTest.php b/tests/unit/Types/InterfaceStringTest.php
index 86872da..59ab0bf 100644
--- a/tests/unit/Types/InterfaceStringTest.php
+++ b/tests/unit/Types/InterfaceStringTest.php
@@ -14,6 +14,7 @@ declare(strict_types=1);
 namespace phpDocumentor\Reflection\Types;
 
 use phpDocumentor\Reflection\Fqsen;
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -22,9 +23,9 @@ use PHPUnit\Framework\TestCase;
 class InterfaceStringTest extends TestCase
 {
     /**
-     * @dataProvider provideInterfaceStrings
      * @covers ::__toString
      */
+    #[DataProvider('provideInterfaceStrings')]
     public function testInterfaceStringStringifyCorrectly(InterfaceString $array, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/Types/IterableTest.php b/tests/unit/Types/IterableTest.php
index 04731e8..46db1cc 100644
--- a/tests/unit/Types/IterableTest.php
+++ b/tests/unit/Types/IterableTest.php
@@ -13,6 +13,7 @@ declare(strict_types=1);
 
 namespace phpDocumentor\Reflection\Types;
 
+use PHPUnit\Framework\Attributes\DataProvider;
 use PHPUnit\Framework\TestCase;
 
 /**
@@ -22,8 +23,8 @@ class IterableTest extends TestCase
 {
     /**
      * @covers ::__toString
-     * @dataProvider provideIterables
      */
+    #[DataProvider('provideIterables')]
     public function testIterableStringifyCorrectly(Iterable_ $iterable, string $expectedString): void
     {
         $this->assertSame($expectedString, (string) $iterable);