for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Cubiche/Model component.
*
* Copyright (c) Cubiche
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Cubiche\Domain\Model\Tests\Units\Selector;
use Cubiche\Domain\Model\Selector\Entity;
use Cubiche\Domain\Model\Selector\Id;
use Cubiche\Domain\Model\Tests\Units\TestCase;
* EntityTests class.
* Generated by TestGenerator on 2016-05-03 at 16:01:26.
class EntityTests extends TestCase
{
* Test Id method.
public function testId()
$this
->given($selector = new Entity())
->then()
->object($selector->id())
->isInstanceOf(Id::class)
;
}