test stubs

This commit is contained in:
Jessica Mauerhan
2016-03-27 14:50:50 -04:00
parent ed04e666d0
commit 7a070982c6
2 changed files with 50 additions and 1 deletions
+49
View File
@@ -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()
{
}
}
+1 -1
View File
@@ -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())