From b6f26fb2f0242172306356a5cf2e0f4eb7e865fb Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Thu, 1 Feb 2024 14:54:40 +0100 Subject: [PATCH] Add missing metadata --- tests/ParserTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/ParserTest.php b/tests/ParserTest.php index 385edb3..b904f8c 100644 --- a/tests/ParserTest.php +++ b/tests/ParserTest.php @@ -10,6 +10,7 @@ namespace SebastianBergmann\CliParser; use PHPUnit\Framework\Attributes\CoversClass; +use PHPUnit\Framework\Attributes\Small; use PHPUnit\Framework\TestCase; #[CoversClass(AmbiguousOptionException::class)] @@ -17,6 +18,7 @@ #[CoversClass(Parser::class)] #[CoversClass(RequiredOptionArgumentMissingException::class)] #[CoversClass(UnknownOptionException::class)] +#[Small] final class ParserTest extends TestCase { public function testParsesShortOptionsWithOptionalValues(): void