for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spec\Kreta\TaskManager\Domain\Model\Organization;
use Kreta\SharedKernel\Domain\Model\Collection;
use Kreta\TaskManager\Domain\Model\Organization\OwnerCollection;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
class OwnerCollectionSpec extends ObjectBehavior
{
function it_is_initializable()
$this->shouldHaveType(OwnerCollection::class);
$this->shouldHaveType(Collection::class);
}