From 6eee464f8d29c12d78f7f5cebefe672b0c120e8d Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 1 Aug 2021 14:13:38 +0200 Subject: [PATCH] Tests: fix missing `@covers` tag ... or rather add the missing `@coversNothing` as this is an integration test. This prevents the test from being marked as "risky" due to the missing tag on PHPUnit 9.x: ``` There was 1 risky test: 1) phpDocumentor\Reflection\DocblockSeeTagResolvingTest::testResolvesSeeFQSENOfInlineTags This test does not have a @covers annotation but is expected to have one ``` --- tests/integration/DocblockSeeTagResolvingTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/DocblockSeeTagResolvingTest.php b/tests/integration/DocblockSeeTagResolvingTest.php index f98a888..2aaf085 100644 --- a/tests/integration/DocblockSeeTagResolvingTest.php +++ b/tests/integration/DocblockSeeTagResolvingTest.php @@ -8,6 +8,9 @@ use phpDocumentor\Reflection\DocBlock\Tags\See; use phpDocumentor\Reflection\Types\Context; use PHPUnit\Framework\TestCase; +/** + * @coversNothing + */ class DocblockSeeTagResolvingTest extends TestCase { public function testResolvesSeeFQSENOfInlineTags()