From 746cb538af81f892debbc0200f5084c77bc0c622 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Mon, 24 Feb 2025 12:07:59 +0100 Subject: [PATCH] [CLEANUP] Add some comments for grouping tests Part of #973 --- tests/Unit/CSSList/AtRuleBlockListTest.php | 8 ++++++++ tests/Unit/CSSList/DocumentTest.php | 8 ++++++++ tests/Unit/CSSList/KeyFrameTest.php | 8 ++++++++ 3 files changed, 24 insertions(+) diff --git a/tests/Unit/CSSList/AtRuleBlockListTest.php b/tests/Unit/CSSList/AtRuleBlockListTest.php index 782d1e3c..0537f7d1 100644 --- a/tests/Unit/CSSList/AtRuleBlockListTest.php +++ b/tests/Unit/CSSList/AtRuleBlockListTest.php @@ -16,6 +16,10 @@ */ final class AtRuleBlockListTest extends TestCase { + /* + * Tests for the implemented interfaces + */ + /** * @test */ @@ -46,6 +50,10 @@ public function implementsCommentable(): void self::assertInstanceOf(Commentable::class, $subject); } + /* + * not grouped yet + */ + /** * @test */ diff --git a/tests/Unit/CSSList/DocumentTest.php b/tests/Unit/CSSList/DocumentTest.php index baec691b..3d1b1257 100644 --- a/tests/Unit/CSSList/DocumentTest.php +++ b/tests/Unit/CSSList/DocumentTest.php @@ -22,6 +22,10 @@ */ final class DocumentTest extends TestCase { + /* + * Tests for the implemented interfaces + */ + /** * @test */ @@ -38,6 +42,10 @@ public function implementsCommentable(): void self::assertInstanceOf(Commentable::class, new Document()); } + /* + * not grouped yet + */ + /** * @test */ diff --git a/tests/Unit/CSSList/KeyFrameTest.php b/tests/Unit/CSSList/KeyFrameTest.php index 89f96953..72ec89a4 100644 --- a/tests/Unit/CSSList/KeyFrameTest.php +++ b/tests/Unit/CSSList/KeyFrameTest.php @@ -16,6 +16,10 @@ */ final class KeyFrameTest extends TestCase { + /* + * Tests for the implemented interfaces + */ + /** * @test */ @@ -46,6 +50,10 @@ public function implementsCommentable(): void self::assertInstanceOf(Commentable::class, $subject); } + /* + * not grouped yet + */ + /** * @test */