Skip to content

Commit

Permalink
Fix: Rename test methods
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 18, 2025
1 parent 30e7906 commit 7282cb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Unit/ErrorIdentifierTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function testNoParameterWithNullableTypeDeclarationReturnsErrorIdentifier
self::assertSame('ergebnis.noParameterWithNullableTypeDeclaration', $errorIdentifier->toString());
}

public function testNoReturnByReferenceErrorIdentifier(): void
public function testNoReturnByReferenceReturnsErrorIdentifier(): void
{
$errorIdentifier = ErrorIdentifier::noReturnByReference();

Expand All @@ -147,7 +147,7 @@ public function testPrivateInFinalClassReturnsErrorIdentifier(): void
self::assertSame('ergebnis.privateInFinalClass', $errorIdentifier->toString());
}

public function testTestCaseWithSuffixIdentifier(): void
public function testTestCaseWithSuffixReturnsErrorIdentifier(): void
{
$errorIdentifier = ErrorIdentifier::testCaseWithSuffix();

Expand Down

0 comments on commit 7282cb2

Please sign in to comment.