Skip to content

Commit

Permalink
[CLEANUP] Improve naming of the getAllDeclarationBlocks tests (#1007)
Browse files Browse the repository at this point in the history
Fixes #1005
  • Loading branch information
oliverklee authored Feb 27, 2025
1 parent a1f9f58 commit f661c96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Unit/CSSList/CSSBlockListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function isCSSList(): void
/**
* @test
*/
public function getAllDeclarationBlocksForNoContentsReturnsEmptyArray(): void
public function getAllDeclarationBlocksWhenNoContentSetReturnsEmptyArray(): void
{
$subject = new ConcreteCSSBlockList();

Expand All @@ -65,7 +65,7 @@ public function getAllDeclarationBlocksForNoContentsReturnsEmptyArray(): void
/**
* @test
*/
public function getAllDeclarationBlocksCanReturnOneDirectDeclarationBlockContent(): void
public function getAllDeclarationBlocksReturnsOneDeclarationBlockDirectlySetAsContent(): void
{
$subject = new ConcreteCSSBlockList();

Expand All @@ -80,7 +80,7 @@ public function getAllDeclarationBlocksCanReturnOneDirectDeclarationBlockContent
/**
* @test
*/
public function getAllDeclarationBlocksCanReturnMultipleDirectDeclarationBlockContents(): void
public function getAllDeclarationBlocksReturnsMultipleDeclarationBlocksDirectlySetAsContents(): void
{
$subject = new ConcreteCSSBlockList();

Expand Down

0 comments on commit f661c96

Please sign in to comment.