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.
36 lines
885 B
36 lines
885 B
<?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 = $this->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([]));
|
|
}
|
|
}
|
|
|