mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-24 17:35:57 +03:00
test stubs
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace Ramsey\Uuid\Test\Codec;
|
||||
|
||||
use Ramsey\Uuid\Test\TestCase;
|
||||
|
||||
/**
|
||||
* Class GuidStringCodecTest
|
||||
* @package Ramsey\Uuid\Test\Codec
|
||||
* @covers Ramsey\Uuid\Codec\GuidStringCodec
|
||||
*/
|
||||
class GuidStringCodecTest extends TestCase
|
||||
{
|
||||
|
||||
public function testEncodeUsesFieldsArray()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testEncodeReturnsFormattedString()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testEncodeBinaryUsesFieldsArray()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testEncodeBinaryReturnsBinaryString()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testDecodeUsesBuilderOnFields()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testDecodeReturnsUuidFromBuilder()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testDecodeBytesReturnsUuid()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -81,7 +81,7 @@ class StringCodecTest extends TestCase
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
public function testDecodeUsesBulderOnFields()
|
||||
public function testDecodeUsesBuilderOnFields()
|
||||
{
|
||||
$string = 'uuid:12345678-1234-abcd-abef-1234abcd4321';
|
||||
$this->builder->expects($this->once())
|
||||
|
||||
Reference in New Issue
Block a user