Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/tests/CoreBundle/Repository/BranchSyncRepositoryTest.php

53 lines
1.3 KiB

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
{
$em = $this->getEntityManager();
4 years ago
$repo = self::getContainer()->get(BranchSyncRepository::class);
$item = (new BranchSync())
->setTitle('Branch')
4 years ago
->setAdminName('Julio')
;
$this->assertHasNoEntityViolations($item);
$em->persist($item);
$em->flush();
// By default there's a root branch.
$this->assertSame(2, $repo->count([]));
}
public function testSearchByKeyword(): void
{
$repo = self::getContainer()->get(BranchSyncRepository::class);
$em = $this->getEntityManager();
$item = (new BranchSync())
->setTitle('Branch')
->setAdminName('Julio')
;
$this->assertHasNoEntityViolations($item);
$em->persist($item);
$em->flush();
$items = $repo->searchByKeyword('Branch');
$this->assertCount(1, $items);
}
4 years ago
}