Skip to content

Commit 321dc5e

Browse files
authored
[CLEANUP] Add some comments for grouping tests (#978)
Part of #973
1 parent 7e812c8 commit 321dc5e

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

tests/Unit/CSSList/AtRuleBlockListTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
*/
1717
final class AtRuleBlockListTest extends TestCase
1818
{
19+
/*
20+
* Tests for the implemented interfaces
21+
*/
22+
1923
/**
2024
* @test
2125
*/
@@ -46,6 +50,10 @@ public function implementsCommentable(): void
4650
self::assertInstanceOf(Commentable::class, $subject);
4751
}
4852

53+
/*
54+
* not grouped yet
55+
*/
56+
4957
/**
5058
* @test
5159
*/

tests/Unit/CSSList/DocumentTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
*/
2323
final class DocumentTest extends TestCase
2424
{
25+
/*
26+
* Tests for the implemented interfaces
27+
*/
28+
2529
/**
2630
* @test
2731
*/
@@ -38,6 +42,10 @@ public function implementsCommentable(): void
3842
self::assertInstanceOf(Commentable::class, new Document());
3943
}
4044

45+
/*
46+
* not grouped yet
47+
*/
48+
4149
/**
4250
* @test
4351
*/

tests/Unit/CSSList/KeyFrameTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
*/
1717
final class KeyFrameTest extends TestCase
1818
{
19+
/*
20+
* Tests for the implemented interfaces
21+
*/
22+
1923
/**
2024
* @test
2125
*/
@@ -46,6 +50,10 @@ public function implementsCommentable(): void
4650
self::assertInstanceOf(Commentable::class, $subject);
4751
}
4852

53+
/*
54+
* not grouped yet
55+
*/
56+
4957
/**
5058
* @test
5159
*/

0 commit comments

Comments
 (0)