Display meta-fields in datatables (#1116)
This commit is contained in:
29
tests/Repository/Loader/DefaultLoaderTest.php
Normal file
29
tests/Repository/Loader/DefaultLoaderTest.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Kimai time-tracking app.
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Tests\Repository\Loader;
|
||||
|
||||
use App\Repository\Loader\DefaultLoader;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers \App\Repository\Loader\DefaultLoader
|
||||
*/
|
||||
class DefaultLoaderTest extends TestCase
|
||||
{
|
||||
public function testLoadResults()
|
||||
{
|
||||
$sut = new DefaultLoader();
|
||||
|
||||
$input = [];
|
||||
$sut->loadResults($input);
|
||||
|
||||
self::assertEquals([], $input);
|
||||
}
|
||||
}
|
||||
30
tests/Repository/Paginator/QueryBuilderPaginatorTest.php
Normal file
30
tests/Repository/Paginator/QueryBuilderPaginatorTest.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Kimai time-tracking app.
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Tests\Repository\Paginator;
|
||||
|
||||
use App\Repository\Paginator\QueryBuilderPaginator;
|
||||
use Doctrine\ORM\EntityManager;
|
||||
use Doctrine\ORM\QueryBuilder;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers \App\Repository\Paginator\QueryBuilderPaginator
|
||||
*/
|
||||
class QueryBuilderPaginatorTest extends TestCase
|
||||
{
|
||||
public function testPaginator()
|
||||
{
|
||||
$em = $this->getMockBuilder(EntityManager::class)->disableOriginalConstructor()->getMock();
|
||||
$qb = new QueryBuilder($em);
|
||||
$sut = new QueryBuilderPaginator($qb, 10);
|
||||
|
||||
self::assertEquals(10, $sut->getNbResults());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user