ErrorSpec.php
348 Bytes
<?php
namespace spec\Cardinity\Method;
use PhpSpec\ObjectBehavior;
class ErrorSpec extends ObjectBehavior
{
function it_implements_result_object_behaviour()
{
$this->shouldImplement('Cardinity\Method\ResultObjectInterface');
}
function it_is_serializable()
{
$this->shouldImplement('\Serializable');
}
}