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