Skip to content

Commit

Permalink
Improve test names
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed May 13, 2024
1 parent 3dd4455 commit 2cdfbd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function testCreatesMockObjectForExtendableClass(): void
$this->assertInstanceOf(MockObject::class, $double);
}

public function testCreatesMockObjectForReadonlyClass(): void
public function testCreatesMockObjectForExtendableReadonlyClass(): void
{
$double = $this->createMock(ExtendableReadonlyClass::class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function testCreatesTestStubForExtendableClass(): void
$this->assertInstanceOf(Stub::class, $double);
}

public function testCreatesTestStubForReadonlyClass(): void
public function testCreatesTestStubForExtendableReadonlyClass(): void
{
$double = $this->createStub(ExtendableReadonlyClass::class);

Expand Down

0 comments on commit 2cdfbd8

Please sign in to comment.