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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
|
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/ArrayShapeTest.php | 3 ++-
.../PseudoTypes/ConditionalForParameterTest.php | 3 ++-
tests/unit/PseudoTypes/ConditionalTest.php | 3 ++-
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/PseudoTypes/OffsetAccessTest.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 ++-
tests/unit/Types/SelfTest.php | 3 ++-
tests/unit/Types/StaticTest.php | 3 ++-
16 files changed, 41 insertions(+), 25 deletions(-)
diff --git a/tests/unit/PseudoTypes/ArrayShapeTest.php b/tests/unit/PseudoTypes/ArrayShapeTest.php
index 981a98b..9b7f027 100644
--- a/tests/unit/PseudoTypes/ArrayShapeTest.php
+++ b/tests/unit/PseudoTypes/ArrayShapeTest.php
@@ -4,6 +4,7 @@ declare(strict_types=1);
namespace phpDocumentor\Reflection\PseudoTypes;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
/**
@@ -25,9 +26,9 @@ class ArrayShapeTest extends TestCase
}
/**
- * @dataProvider provideToStringData
* @covers ::__toString
*/
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, ArrayShape $arrayShape): void
{
$this->assertSame($expectedResult, (string) $arrayShape);
diff --git a/tests/unit/PseudoTypes/ConditionalForParameterTest.php b/tests/unit/PseudoTypes/ConditionalForParameterTest.php
index 7eec9c3..87bd50c 100644
--- a/tests/unit/PseudoTypes/ConditionalForParameterTest.php
+++ b/tests/unit/PseudoTypes/ConditionalForParameterTest.php
@@ -7,6 +7,7 @@ namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\Types\Array_;
use phpDocumentor\Reflection\Types\Integer;
use phpDocumentor\Reflection\Types\Static_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
/**
@@ -37,9 +38,9 @@ class ConditionalForParameterTest extends TestCase
}
/**
- * @dataProvider provideToStringData
* @covers ::__toString
*/
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, ConditionalForParameter $type): void
{
$this->assertSame($expectedResult, (string) $type);
diff --git a/tests/unit/PseudoTypes/ConditionalTest.php b/tests/unit/PseudoTypes/ConditionalTest.php
index aff523d..12fcfdc 100644
--- a/tests/unit/PseudoTypes/ConditionalTest.php
+++ b/tests/unit/PseudoTypes/ConditionalTest.php
@@ -9,6 +9,7 @@ use phpDocumentor\Reflection\Types\Array_;
use phpDocumentor\Reflection\Types\Integer;
use phpDocumentor\Reflection\Types\Object_;
use phpDocumentor\Reflection\Types\Static_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
/**
@@ -39,9 +40,9 @@ class ConditionalTest extends TestCase
}
/**
- * @dataProvider provideToStringData
* @covers ::__toString
*/
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, Conditional $type): void
{
$this->assertSame($expectedResult, (string) $type);
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/PseudoTypes/OffsetAccessTest.php b/tests/unit/PseudoTypes/OffsetAccessTest.php
index 34bd1c8..5194916 100644
--- a/tests/unit/PseudoTypes/OffsetAccessTest.php
+++ b/tests/unit/PseudoTypes/OffsetAccessTest.php
@@ -6,6 +6,7 @@ namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\Fqsen;
use phpDocumentor\Reflection\Types\Object_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
/**
@@ -28,9 +29,9 @@ class OffsetAccessTest extends TestCase
}
/**
- * @dataProvider provideToStringData
* @covers ::__toString
*/
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, OffsetAccess $type): void
{
$this->assertSame($expectedResult, (string) $type);
diff --git a/tests/unit/TypeResolverTest.php b/tests/unit/TypeResolverTest.php
index 922e4ab..a0e22b1 100644
--- a/tests/unit/TypeResolverTest.php
+++ b/tests/unit/TypeResolverTest.php
@@ -77,6 +77,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;
@@ -100,8 +101,8 @@ class TypeResolverTest extends TestCase
* @covers ::createType
* @covers ::<private>
*
- * @dataProvider provideKeywords
*/
+ #[DataProvider('provideKeywords')]
public function testResolvingKeywords(string $keyword, string $expectedClass): void
{
$fixture = new TypeResolver();
@@ -121,8 +122,8 @@ class TypeResolverTest extends TestCase
* @covers ::createType
* @covers ::<private>
*
- * @dataProvider provideClassStrings
*/
+ #[DataProvider('provideClassStrings')]
public function testResolvingClassStrings(string $classString, bool $throwsException): void
{
$fixture = new TypeResolver();
@@ -146,8 +147,8 @@ class TypeResolverTest extends TestCase
* @covers ::createType
* @covers ::<private>
*
- * @dataProvider provideInterfaceStrings
*/
+ #[DataProvider('provideInterfaceStrings')]
public function testResolvingInterfaceStrings(string $interfaceString, bool $throwsException): void
{
$fixture = new TypeResolver();
@@ -172,8 +173,8 @@ class TypeResolverTest extends TestCase
* @covers ::createType
* @covers ::<private>
*
- * @dataProvider provideFqcn
*/
+ #[DataProvider('provideFqcn')]
public function testResolvingFQSENs(string $fqsen): void
{
$fixture = new TypeResolver();
@@ -890,14 +891,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);
diff --git a/tests/unit/Types/SelfTest.php b/tests/unit/Types/SelfTest.php
index b51b10f..79cb330 100644
--- a/tests/unit/Types/SelfTest.php
+++ b/tests/unit/Types/SelfTest.php
@@ -5,6 +5,7 @@ declare(strict_types=1);
namespace phpDocumentor\Reflection\Types;
use phpDocumentor\Reflection\Fqsen;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
/**
@@ -29,9 +30,9 @@ class SelfTest extends TestCase
}
/**
- * @dataProvider provideToStringData
* @covers ::__toString
*/
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, Self_ $type): void
{
$this->assertSame($expectedResult, (string) $type);
diff --git a/tests/unit/Types/StaticTest.php b/tests/unit/Types/StaticTest.php
index f41c1c0..bc104e2 100644
--- a/tests/unit/Types/StaticTest.php
+++ b/tests/unit/Types/StaticTest.php
@@ -5,6 +5,7 @@ declare(strict_types=1);
namespace phpDocumentor\Reflection\Types;
use phpDocumentor\Reflection\Fqsen;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
/**
@@ -29,9 +30,9 @@ class StaticTest extends TestCase
}
/**
- * @dataProvider provideToStringData
* @covers ::__toString
*/
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, Static_ $type): void
{
$this->assertSame($expectedResult, (string) $type);
|