for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright
*/
namespace Hexarchium\CoreDomain\Tests\Model\Model\Entity;
use Hexarchium\CoreDomain\Model\Domain\DomainId;
use Hexarchium\CoreDomain\Model\Model\Entity\Model;
use Hexarchium\CoreDomain\Model\Model\ModelId;
class ModelTest extends \PHPUnit_Framework_TestCase
{
public function testInitialize()
$this->assertInstanceOf(
Model::class,
new Model(
new ModelId(
new DomainId('1'),
'1'
)
);
}