mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
Changes all usage in Tests of getMock with getMockBuilder.
This commit is contained in:
@@ -25,8 +25,8 @@ class GuidStringCodecTest extends TestCase
|
||||
protected function setUp()
|
||||
{
|
||||
parent::setUp();
|
||||
$this->builder = $this->getMock('Ramsey\Uuid\Builder\UuidBuilderInterface');
|
||||
$this->uuid = $this->getMock('Ramsey\Uuid\UuidInterface');
|
||||
$this->builder = $this->getMockBuilder('Ramsey\Uuid\Builder\UuidBuilderInterface')->getMock();
|
||||
$this->uuid = $this->getMockBuilder('Ramsey\Uuid\UuidInterface')->getMock();
|
||||
$this->fields = ['time_low' => '12345678',
|
||||
'time_mid' => '1234',
|
||||
'time_hi_and_version' => 'abcd',
|
||||
|
||||
Reference in New Issue
Block a user