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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
|
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 | 5 ++---
tests/unit/PseudoTypes/ClassStringTest.php | 5 ++---
tests/unit/PseudoTypes/ConditionalForParameterTest.php | 5 ++---
tests/unit/PseudoTypes/ConditionalTest.php | 5 ++---
tests/unit/PseudoTypes/EnumStringTest.php | 5 ++---
tests/unit/PseudoTypes/GenericTest.php | 5 ++---
tests/unit/PseudoTypes/IntegerRangeTest.php | 5 ++---
tests/unit/PseudoTypes/InterfaceStringTest.php | 5 ++---
tests/unit/PseudoTypes/ListTest.php | 5 ++---
tests/unit/PseudoTypes/NonEmptyArrayTest.php | 5 ++---
tests/unit/PseudoTypes/NonEmptyListTest.php | 5 ++---
tests/unit/PseudoTypes/ObjectShapeTest.php | 5 ++---
tests/unit/PseudoTypes/OffsetAccessTest.php | 5 ++---
tests/unit/PseudoTypes/TraitStringTest.php | 5 ++---
tests/unit/TypeResolverTest.php | 18 +++++++++---------
tests/unit/Types/ArrayTest.php | 5 ++---
tests/unit/Types/CallableTest.php | 5 ++---
tests/unit/Types/IterableTest.php | 5 ++---
tests/unit/Types/SelfTest.php | 5 ++---
tests/unit/Types/StaticTest.php | 5 ++---
20 files changed, 47 insertions(+), 66 deletions(-)
diff --git a/tests/unit/PseudoTypes/ArrayShapeTest.php b/tests/unit/PseudoTypes/ArrayShapeTest.php
index 804b74b..19677fb 100644
--- a/tests/unit/PseudoTypes/ArrayShapeTest.php
+++ b/tests/unit/PseudoTypes/ArrayShapeTest.php
@@ -6,6 +6,7 @@ namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\Types\Array_;
use phpDocumentor\Reflection\Types\Mixed_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class ArrayShapeTest extends TestCase
@@ -21,9 +22,7 @@ final class ArrayShapeTest extends TestCase
$this->assertEquals(new Array_(new Mixed_(), new ArrayKey()), $arrayShape->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, ArrayShape $arrayShape): void
{
$this->assertSame($expectedResult, (string) $arrayShape);
diff --git a/tests/unit/PseudoTypes/ClassStringTest.php b/tests/unit/PseudoTypes/ClassStringTest.php
index b48c6ba..29c38c9 100644
--- a/tests/unit/PseudoTypes/ClassStringTest.php
+++ b/tests/unit/PseudoTypes/ClassStringTest.php
@@ -17,6 +17,7 @@ use phpDocumentor\Reflection\Fqsen;
use phpDocumentor\Reflection\Types\Compound;
use phpDocumentor\Reflection\Types\Object_;
use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class ClassStringTest extends TestCase
@@ -30,9 +31,7 @@ final class ClassStringTest extends TestCase
$this->assertEquals(new String_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(ClassString $type, string $expectedString): void
{
$this->assertSame($expectedString, (string) $type);
diff --git a/tests/unit/PseudoTypes/ConditionalForParameterTest.php b/tests/unit/PseudoTypes/ConditionalForParameterTest.php
index b76c619..c6b0873 100644
--- a/tests/unit/PseudoTypes/ConditionalForParameterTest.php
+++ b/tests/unit/PseudoTypes/ConditionalForParameterTest.php
@@ -8,6 +8,7 @@ use phpDocumentor\Reflection\Types\Array_;
use phpDocumentor\Reflection\Types\Integer;
use phpDocumentor\Reflection\Types\Mixed_;
use phpDocumentor\Reflection\Types\Static_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class ConditionalForParameterTest extends TestCase
@@ -28,9 +29,7 @@ final class ConditionalForParameterTest extends TestCase
$this->assertEquals(new Mixed_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[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 ba010d6..1c06d84 100644
--- a/tests/unit/PseudoTypes/ConditionalTest.php
+++ b/tests/unit/PseudoTypes/ConditionalTest.php
@@ -10,6 +10,7 @@ use phpDocumentor\Reflection\Types\Integer;
use phpDocumentor\Reflection\Types\Mixed_;
use phpDocumentor\Reflection\Types\Object_;
use phpDocumentor\Reflection\Types\Static_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class ConditionalTest extends TestCase
@@ -30,9 +31,7 @@ final class ConditionalTest extends TestCase
$this->assertEquals(new Mixed_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, Conditional $type): void
{
$this->assertSame($expectedResult, (string) $type);
diff --git a/tests/unit/PseudoTypes/EnumStringTest.php b/tests/unit/PseudoTypes/EnumStringTest.php
index fe85222..3f7814e 100644
--- a/tests/unit/PseudoTypes/EnumStringTest.php
+++ b/tests/unit/PseudoTypes/EnumStringTest.php
@@ -17,6 +17,7 @@ use phpDocumentor\Reflection\Fqsen;
use phpDocumentor\Reflection\Types\Compound;
use phpDocumentor\Reflection\Types\Object_;
use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class EnumStringTest extends TestCase
@@ -30,9 +31,7 @@ final class EnumStringTest extends TestCase
$this->assertEquals(new String_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(EnumString $type, string $expectedString): void
{
$this->assertSame($expectedString, (string) $type);
diff --git a/tests/unit/PseudoTypes/GenericTest.php b/tests/unit/PseudoTypes/GenericTest.php
index fe240dd..cdc12c3 100644
--- a/tests/unit/PseudoTypes/GenericTest.php
+++ b/tests/unit/PseudoTypes/GenericTest.php
@@ -9,6 +9,7 @@ use phpDocumentor\Reflection\Types\Array_;
use phpDocumentor\Reflection\Types\Integer;
use phpDocumentor\Reflection\Types\Object_;
use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class GenericTest extends TestCase
@@ -23,9 +24,7 @@ final class GenericTest extends TestCase
$this->assertSame($types, $type->getTypes());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, Generic $type): void
{
$this->assertSame($expectedResult, (string) $type);
diff --git a/tests/unit/PseudoTypes/IntegerRangeTest.php b/tests/unit/PseudoTypes/IntegerRangeTest.php
index aede5b5..8308e92 100644
--- a/tests/unit/PseudoTypes/IntegerRangeTest.php
+++ b/tests/unit/PseudoTypes/IntegerRangeTest.php
@@ -14,6 +14,7 @@ declare(strict_types=1);
namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\Types\Integer;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class IntegerRangeTest extends TestCase
@@ -29,9 +30,7 @@ final class IntegerRangeTest extends TestCase
$this->assertEquals(new Integer(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(IntegerRange $type, string $expectedString): void
{
$this->assertSame($expectedString, (string) $type);
diff --git a/tests/unit/PseudoTypes/InterfaceStringTest.php b/tests/unit/PseudoTypes/InterfaceStringTest.php
index 6a178c3..66e9cae 100644
--- a/tests/unit/PseudoTypes/InterfaceStringTest.php
+++ b/tests/unit/PseudoTypes/InterfaceStringTest.php
@@ -17,6 +17,7 @@ use phpDocumentor\Reflection\Fqsen;
use phpDocumentor\Reflection\Types\Compound;
use phpDocumentor\Reflection\Types\Object_;
use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class InterfaceStringTest extends TestCase
@@ -30,9 +31,7 @@ final class InterfaceStringTest extends TestCase
$this->assertEquals(new String_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(InterfaceString $type, string $expectedString): void
{
$this->assertSame($expectedString, (string) $type);
diff --git a/tests/unit/PseudoTypes/ListTest.php b/tests/unit/PseudoTypes/ListTest.php
index 014ec2e..a51894d 100644
--- a/tests/unit/PseudoTypes/ListTest.php
+++ b/tests/unit/PseudoTypes/ListTest.php
@@ -18,6 +18,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;
final class ListTest extends TestCase
@@ -33,9 +34,7 @@ final class ListTest extends TestCase
$this->assertEquals(new Array_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(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 695416e..b34fd12 100644
--- a/tests/unit/PseudoTypes/NonEmptyArrayTest.php
+++ b/tests/unit/PseudoTypes/NonEmptyArrayTest.php
@@ -18,6 +18,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;
final class NonEmptyArrayTest extends TestCase
@@ -33,9 +34,7 @@ final class NonEmptyArrayTest extends TestCase
$this->assertEquals(new Array_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(NonEmptyArray $type, string $expectedString): void
{
$this->assertSame($expectedString, (string) $type);
diff --git a/tests/unit/PseudoTypes/NonEmptyListTest.php b/tests/unit/PseudoTypes/NonEmptyListTest.php
index 215bf82..339df02 100644
--- a/tests/unit/PseudoTypes/NonEmptyListTest.php
+++ b/tests/unit/PseudoTypes/NonEmptyListTest.php
@@ -18,6 +18,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;
final class NonEmptyListTest extends TestCase
@@ -33,9 +34,7 @@ final class NonEmptyListTest extends TestCase
$this->assertEquals(new Array_(null, new Integer()), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(NonEmptyList $array, string $expectedString): void
{
$this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/PseudoTypes/ObjectShapeTest.php b/tests/unit/PseudoTypes/ObjectShapeTest.php
index 8d8f50d..356eb56 100644
--- a/tests/unit/PseudoTypes/ObjectShapeTest.php
+++ b/tests/unit/PseudoTypes/ObjectShapeTest.php
@@ -5,6 +5,7 @@ declare(strict_types=1);
namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\Types\Object_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class ObjectShapeTest extends TestCase
@@ -20,9 +21,7 @@ final class ObjectShapeTest extends TestCase
$this->assertEquals(new Object_(), $objectShape->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, ObjectShape $objectShape): void
{
$this->assertSame($expectedResult, (string) $objectShape);
diff --git a/tests/unit/PseudoTypes/OffsetAccessTest.php b/tests/unit/PseudoTypes/OffsetAccessTest.php
index 99c2dcb..8ac89ca 100644
--- a/tests/unit/PseudoTypes/OffsetAccessTest.php
+++ b/tests/unit/PseudoTypes/OffsetAccessTest.php
@@ -7,6 +7,7 @@ namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\Fqsen;
use phpDocumentor\Reflection\Types\Mixed_;
use phpDocumentor\Reflection\Types\Object_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class OffsetAccessTest extends TestCase
@@ -22,9 +23,7 @@ final class OffsetAccessTest extends TestCase
$this->assertEquals(new Mixed_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, OffsetAccess $type): void
{
$this->assertSame($expectedResult, (string) $type);
diff --git a/tests/unit/PseudoTypes/TraitStringTest.php b/tests/unit/PseudoTypes/TraitStringTest.php
index c199f4e..6b24bee 100644
--- a/tests/unit/PseudoTypes/TraitStringTest.php
+++ b/tests/unit/PseudoTypes/TraitStringTest.php
@@ -17,6 +17,7 @@ use phpDocumentor\Reflection\Fqsen;
use phpDocumentor\Reflection\Types\Compound;
use phpDocumentor\Reflection\Types\Object_;
use phpDocumentor\Reflection\Types\String_;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class TraitStringTest extends TestCase
@@ -30,9 +31,7 @@ final class TraitStringTest extends TestCase
$this->assertEquals(new String_(), $type->underlyingType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(TraitString $type, string $expectedString): void
{
$this->assertSame($expectedString, (string) $type);
diff --git a/tests/unit/TypeResolverTest.php b/tests/unit/TypeResolverTest.php
index 30b1b63..db939e9 100644
--- a/tests/unit/TypeResolverTest.php
+++ b/tests/unit/TypeResolverTest.php
@@ -93,6 +93,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;
@@ -110,8 +111,8 @@ class TypeResolverTest extends TestCase
*
* @param class-string $expectedClass
*
- * @dataProvider provideKeywords
*/
+ #[DataProvider('provideKeywords')]
public function testResolvingKeywords(string $keyword, string $expectedClass): void
{
$fixture = new TypeResolver();
@@ -128,9 +129,8 @@ class TypeResolverTest extends TestCase
* @uses \phpDocumentor\Reflection\Types\Object_
* @uses \phpDocumentor\Reflection\Fqsen
* @uses \phpDocumentor\Reflection\FqsenResolver
- *
- * @dataProvider provideFqcn
*/
+ #[DataProvider('provideFqcn')]
public function testResolvingFQSENs(string $fqsen): void
{
$fixture = new TypeResolver();
@@ -726,13 +726,13 @@ class TypeResolverTest extends TestCase
}
/**
- * @dataProvider typeProvider
- * @dataProvider genericsProvider
- * @dataProvider callableProvider
- * @dataProvider constExpressions
- * @dataProvider shapeStructures
* @testdox create type from $type
*/
+ #[DataProvider('typeProvider')]
+ #[DataProvider('genericsProvider')]
+ #[DataProvider('callableProvider')]
+ #[DataProvider('constExpressions')]
+ #[DataProvider('shapeStructures')]
public function testTypeBuilding(string $type, Type $expected, bool $deprecation = false): void
{
$this->expectNoDeprecationWithIdentifier('https://github.com/phpDocumentor/TypeResolver/issues/184');
@@ -744,9 +744,9 @@ class TypeResolverTest extends TestCase
}
/**
- * @dataProvider illegalLegacyFormatProvider
* @testdox create type from $type
*/
+ #[DataProvider('illegalLegacyFormatProvider')]
public function testTypeBuildingThrowsError(string $type, Type $expected): void
{
$this->expectDeprecationWithIdentifier('https://github.com/phpDocumentor/TypeResolver/issues/184');
diff --git a/tests/unit/Types/ArrayTest.php b/tests/unit/Types/ArrayTest.php
index bb7204f..3131d2d 100644
--- a/tests/unit/Types/ArrayTest.php
+++ b/tests/unit/Types/ArrayTest.php
@@ -18,6 +18,7 @@ use phpDocumentor\Reflection\PseudoTypes\ArrayShape;
use phpDocumentor\Reflection\PseudoTypes\ArrayShapeItem;
use phpDocumentor\Reflection\PseudoTypes\ObjectShape;
use phpDocumentor\Reflection\PseudoTypes\ObjectShapeItem;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class ArrayTest extends TestCase
@@ -50,9 +51,7 @@ final class ArrayTest extends TestCase
$this->assertSame($valueType, $type->getValueType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(Array_ $array, string $expectedString): void
{
$this->assertSame($expectedString, (string) $array);
diff --git a/tests/unit/Types/CallableTest.php b/tests/unit/Types/CallableTest.php
index a99e048..7053124 100644
--- a/tests/unit/Types/CallableTest.php
+++ b/tests/unit/Types/CallableTest.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;
final class CallableTest extends TestCase
@@ -54,9 +55,7 @@ final class CallableTest extends TestCase
$this->assertSame($returnType, $type->getReturnType());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, Callable_ $type): void
{
$this->assertSame($expectedResult, (string) $type);
diff --git a/tests/unit/Types/IterableTest.php b/tests/unit/Types/IterableTest.php
index ec59a94..68b329b 100644
--- a/tests/unit/Types/IterableTest.php
+++ b/tests/unit/Types/IterableTest.php
@@ -13,13 +13,12 @@ declare(strict_types=1);
namespace phpDocumentor\Reflection\Types;
+use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class IterableTest extends TestCase
{
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(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 d69fbb5..7ad7eb0 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;
final class SelfTest extends TestCase
@@ -22,9 +23,7 @@ final class SelfTest extends TestCase
$this->assertSame($genericTypes, $type->getGenericTypes());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[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 53f6f18..74fad34 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;
final class StaticTest extends TestCase
@@ -22,9 +23,7 @@ final class StaticTest extends TestCase
$this->assertSame($genericTypes, $type->getGenericTypes());
}
- /**
- * @dataProvider provideToStringData
- */
+ #[DataProvider('provideToStringData')]
public function testToString(string $expectedResult, Static_ $type): void
{
$this->assertSame($expectedResult, (string) $type);
|