You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
917 B
37 lines
917 B
|
4 years ago
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
|
||
|
|
namespace Chamilo\Tests\CoreBundle\Repository;
|
||
|
|
|
||
|
|
use Chamilo\CoreBundle\Entity\BranchSync;
|
||
|
|
use Chamilo\CoreBundle\Repository\BranchSyncRepository;
|
||
|
|
use Chamilo\Tests\AbstractApiTest;
|
||
|
|
use Chamilo\Tests\ChamiloTestTrait;
|
||
|
|
|
||
|
|
class BranchSyncRepositoryTest extends AbstractApiTest
|
||
|
|
{
|
||
|
|
use ChamiloTestTrait;
|
||
|
|
|
||
|
|
public function testCreate(): void
|
||
|
|
{
|
||
|
|
self::bootKernel();
|
||
|
|
|
||
|
|
$em = self::getContainer()->get('doctrine')->getManager();
|
||
|
|
$repo = self::getContainer()->get(BranchSyncRepository::class);
|
||
|
|
|
||
|
|
$item = (new BranchSync())
|
||
|
|
->setBranchName('Branch')
|
||
|
|
->setAdminName('Julio')
|
||
|
|
;
|
||
|
|
$this->assertHasNoEntityViolations($item);
|
||
|
|
$em->persist($item);
|
||
|
|
$em->flush();
|
||
|
|
|
||
|
|
// By default there's a root branch.
|
||
|
|
$this->assertSame(2, $repo->count([]));
|
||
|
|
}
|
||
|
|
}
|