File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/unit/Framework/MockObject/Creation Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public function testCreatesMockObjectForExtendableClass(): void
47
47
$ this ->assertInstanceOf (MockObject::class, $ double );
48
48
}
49
49
50
- public function testCreatesMockObjectForReadonlyClass (): void
50
+ public function testCreatesMockObjectForExtendableReadonlyClass (): void
51
51
{
52
52
$ double = $ this ->createMock (ExtendableReadonlyClass::class);
53
53
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public function testCreatesTestStubForExtendableClass(): void
45
45
$ this ->assertInstanceOf (Stub::class, $ double );
46
46
}
47
47
48
- public function testCreatesTestStubForReadonlyClass (): void
48
+ public function testCreatesTestStubForExtendableReadonlyClass (): void
49
49
{
50
50
$ double = $ this ->createStub (ExtendableReadonlyClass::class);
51
51
You can’t perform that action at this time.
0 commit comments