Skip to content

Commit 2cdfbd8

Browse files
Improve test names
1 parent 3dd4455 commit 2cdfbd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/unit/Framework/MockObject/Creation/CreateMockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function testCreatesMockObjectForExtendableClass(): void
4747
$this->assertInstanceOf(MockObject::class, $double);
4848
}
4949

50-
public function testCreatesMockObjectForReadonlyClass(): void
50+
public function testCreatesMockObjectForExtendableReadonlyClass(): void
5151
{
5252
$double = $this->createMock(ExtendableReadonlyClass::class);
5353

tests/unit/Framework/MockObject/Creation/CreateStubTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function testCreatesTestStubForExtendableClass(): void
4545
$this->assertInstanceOf(Stub::class, $double);
4646
}
4747

48-
public function testCreatesTestStubForReadonlyClass(): void
48+
public function testCreatesTestStubForExtendableReadonlyClass(): void
4949
{
5050
$double = $this->createStub(ExtendableReadonlyClass::class);
5151

0 commit comments

Comments
 (0)